Merge branch 'rel/1.0.0' into dev/jgoshi/removeProj
This commit is contained in:
commit
45264edcd7
300 changed files with 13201 additions and 15113 deletions
24
TestAssets/TestProjects/TestAppWithEmbeddedResources/Program.cs
Executable file
24
TestAssets/TestProjects/TestAppWithEmbeddedResources/Program.cs
Executable file
|
@ -0,0 +1,24 @@
|
|||
using System;
|
||||
using System.Linq;
|
||||
using System.Reflection;
|
||||
|
||||
namespace ConsoleApplication
|
||||
{
|
||||
public class Program
|
||||
{
|
||||
public static void Main(string[] args)
|
||||
{
|
||||
var thisAssembly = typeof(Program).GetTypeInfo().Assembly;
|
||||
var resources = from resourceName in thisAssembly.GetManifestResourceNames()
|
||||
select resourceName;
|
||||
|
||||
if (resources.Count() > 1)
|
||||
{
|
||||
throw new Exception($"{resources.Count()} found in the assembly. Was expecting only 1.");
|
||||
}
|
||||
|
||||
var resourceNames = string.Join(",", resources);
|
||||
Console.WriteLine($"{resources.Count()} Resources Found: {resourceNames}");
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,123 @@
|
|||
<?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="hello" xml:space="preserve">
|
||||
<value>Hello World!</value>
|
||||
</data>
|
||||
</root>
|
20
TestAssets/TestProjects/TestAppWithEmbeddedResources/project.json
Executable file
20
TestAssets/TestProjects/TestAppWithEmbeddedResources/project.json
Executable file
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"version": "1.0.0-*",
|
||||
"buildOptions": {
|
||||
"debugType": "portable",
|
||||
"emitEntryPoint": true,
|
||||
"embed": [ "Resources/*.resx" ]
|
||||
},
|
||||
"dependencies": {},
|
||||
"frameworks": {
|
||||
"netcoreapp1.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"type": "platform",
|
||||
"version": "1.0.0"
|
||||
}
|
||||
},
|
||||
"imports": "dnxcore50"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -57,7 +57,7 @@ namespace Microsoft.DotNet.Cli.Build
|
|||
{
|
||||
if (NoBuild)
|
||||
{
|
||||
return "--noBuild";
|
||||
return "--no-build";
|
||||
}
|
||||
|
||||
return null;
|
||||
|
|
|
@ -419,13 +419,17 @@ namespace Microsoft.DotNet.ProjectJsonMigration.Rules
|
|||
private IncludeContext GetEmbedIncludeContext(CommonCompilerOptions compilerOptions, string projectDirectory)
|
||||
{
|
||||
// Defaults from src/Microsoft.DotNet.ProjectModel/ProjectReader.cs #L602
|
||||
return compilerOptions.EmbedInclude ??
|
||||
var embedIncludeContext = compilerOptions.EmbedInclude ??
|
||||
new IncludeContext(
|
||||
projectDirectory,
|
||||
"embed",
|
||||
new JObject(),
|
||||
ProjectFilesCollection.DefaultResourcesBuiltInPatterns,
|
||||
DefaultEmptyExcludeOption);
|
||||
|
||||
embedIncludeContext.BuiltInsExclude.Add("@(EmbeddedResource)");
|
||||
|
||||
return embedIncludeContext;
|
||||
}
|
||||
|
||||
private IncludeContext GetCopyToOutputIncludeContext(CommonCompilerOptions compilerOptions, string projectDirectory)
|
||||
|
|
|
@ -3,55 +3,25 @@
|
|||
<file datatype="xml" source-language="en" target-language="cs" original="src/dotnet/commands/dotnet-add/dotnet-add-p2p/LocalizableStrings.resx">
|
||||
<body>
|
||||
<group id="src/dotnet/commands/dotnet-add/dotnet-add-p2p/LocalizableStrings.resx" />
|
||||
<trans-unit id="SpecifyAtLeastOneReferenceToAdd">
|
||||
<source>You must specify at least one reference to add. Please run dotnet add --help for more information.</source>
|
||||
<target state="new">You must specify at least one reference to add. Please run dotnet add --help for more information.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Add Project to Project (p2p) reference Command</source>
|
||||
<target state="new">.NET Add Project to Project (p2p) reference Command</target>
|
||||
<note></note>
|
||||
<target state="translated">Příkaz rozhraní .NET pro přidání odkazu mezi projekty (p2p)</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to add project to project (p2p) reference</source>
|
||||
<target state="new">Command to add project to project (p2p) reference</target>
|
||||
<note></note>
|
||||
<target state="translated">Příkaz pro přidání odkazu mezi projekty (p2p)</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppHelpText">
|
||||
<source>Project to project references to add</source>
|
||||
<target state="new">Project to project references to add</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdProject">
|
||||
<source>PROJECT</source>
|
||||
<target state="new">PROJECT</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdProjectDescription">
|
||||
<source>The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.</source>
|
||||
<target state="new">The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFramework">
|
||||
<source>FRAMEWORK</source>
|
||||
<target state="new">FRAMEWORK</target>
|
||||
<note></note>
|
||||
<target state="translated">Přidávané odkazy mezi projekty</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFrameworkDescription">
|
||||
<source>Add reference only when targetting a specific framework</source>
|
||||
<target state="new">Add reference only when targetting a specific framework</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdForceDescription">
|
||||
<source>Add reference even if it does not exist, do not convert paths to relative</source>
|
||||
<target state="new">Add reference even if it does not exist, do not convert paths to relative</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectException">
|
||||
<source>Project</source>
|
||||
<target state="new">Project</target>
|
||||
<note></note>
|
||||
<target state="translated">Přidat odkaz jen při zaměření na určitou platformu</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -3,55 +3,25 @@
|
|||
<file datatype="xml" source-language="en" target-language="de" original="src/dotnet/commands/dotnet-add/dotnet-add-p2p/LocalizableStrings.resx">
|
||||
<body>
|
||||
<group id="src/dotnet/commands/dotnet-add/dotnet-add-p2p/LocalizableStrings.resx" />
|
||||
<trans-unit id="SpecifyAtLeastOneReferenceToAdd">
|
||||
<source>You must specify at least one reference to add. Please run dotnet add --help for more information.</source>
|
||||
<target state="new">You must specify at least one reference to add. Please run dotnet add --help for more information.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Add Project to Project (p2p) reference Command</source>
|
||||
<target state="new">.NET Add Project to Project (p2p) reference Command</target>
|
||||
<note></note>
|
||||
<target state="translated">.NET-Befehl zum Hinzufügen von Projekt-zu-Projekt-Verweisen (P2P-Verweise)</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to add project to project (p2p) reference</source>
|
||||
<target state="new">Command to add project to project (p2p) reference</target>
|
||||
<note></note>
|
||||
<target state="translated">Befehl zum Hinzufügen von Projekt-zu-Projekt-Verweisen (P2P-Verweise)</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppHelpText">
|
||||
<source>Project to project references to add</source>
|
||||
<target state="new">Project to project references to add</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdProject">
|
||||
<source>PROJECT</source>
|
||||
<target state="new">PROJECT</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdProjectDescription">
|
||||
<source>The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.</source>
|
||||
<target state="new">The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFramework">
|
||||
<source>FRAMEWORK</source>
|
||||
<target state="new">FRAMEWORK</target>
|
||||
<note></note>
|
||||
<target state="translated">Hinzuzufügender Projekt-zu-Projekt-Verweis</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFrameworkDescription">
|
||||
<source>Add reference only when targetting a specific framework</source>
|
||||
<target state="new">Add reference only when targetting a specific framework</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdForceDescription">
|
||||
<source>Add reference even if it does not exist, do not convert paths to relative</source>
|
||||
<target state="new">Add reference even if it does not exist, do not convert paths to relative</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectException">
|
||||
<source>Project</source>
|
||||
<target state="new">Project</target>
|
||||
<note></note>
|
||||
<target state="translated">Verweis nur bei Verwendung eines bestimmten Zielframeworks hinzufügen</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -3,55 +3,25 @@
|
|||
<file datatype="xml" source-language="en" target-language="es" original="src/dotnet/commands/dotnet-add/dotnet-add-p2p/LocalizableStrings.resx">
|
||||
<body>
|
||||
<group id="src/dotnet/commands/dotnet-add/dotnet-add-p2p/LocalizableStrings.resx" />
|
||||
<trans-unit id="SpecifyAtLeastOneReferenceToAdd">
|
||||
<source>You must specify at least one reference to add. Please run dotnet add --help for more information.</source>
|
||||
<target state="new">You must specify at least one reference to add. Please run dotnet add --help for more information.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Add Project to Project (p2p) reference Command</source>
|
||||
<target state="new">.NET Add Project to Project (p2p) reference Command</target>
|
||||
<note></note>
|
||||
<target state="translated">Comando de .NET para agregar una referencia de proyecto a proyecto (p2p)</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to add project to project (p2p) reference</source>
|
||||
<target state="new">Command to add project to project (p2p) reference</target>
|
||||
<note></note>
|
||||
<target state="translated">Comando para agregar una referencia de proyecto a proyecto (p2p)</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppHelpText">
|
||||
<source>Project to project references to add</source>
|
||||
<target state="new">Project to project references to add</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdProject">
|
||||
<source>PROJECT</source>
|
||||
<target state="new">PROJECT</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdProjectDescription">
|
||||
<source>The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.</source>
|
||||
<target state="new">The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFramework">
|
||||
<source>FRAMEWORK</source>
|
||||
<target state="new">FRAMEWORK</target>
|
||||
<note></note>
|
||||
<target state="translated">Referencias de proyecto a proyecto para agregar</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFrameworkDescription">
|
||||
<source>Add reference only when targetting a specific framework</source>
|
||||
<target state="new">Add reference only when targetting a specific framework</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdForceDescription">
|
||||
<source>Add reference even if it does not exist, do not convert paths to relative</source>
|
||||
<target state="new">Add reference even if it does not exist, do not convert paths to relative</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectException">
|
||||
<source>Project</source>
|
||||
<target state="new">Project</target>
|
||||
<note></note>
|
||||
<target state="translated">Se agrega una referencia solo cuando hay una plataforma de destino específica</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -3,55 +3,25 @@
|
|||
<file datatype="xml" source-language="en" target-language="fr" original="src/dotnet/commands/dotnet-add/dotnet-add-p2p/LocalizableStrings.resx">
|
||||
<body>
|
||||
<group id="src/dotnet/commands/dotnet-add/dotnet-add-p2p/LocalizableStrings.resx" />
|
||||
<trans-unit id="SpecifyAtLeastOneReferenceToAdd">
|
||||
<source>You must specify at least one reference to add. Please run dotnet add --help for more information.</source>
|
||||
<target state="new">You must specify at least one reference to add. Please run dotnet add --help for more information.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Add Project to Project (p2p) reference Command</source>
|
||||
<target state="new">.NET Add Project to Project (p2p) reference Command</target>
|
||||
<note></note>
|
||||
<target state="translated">Commande d'ajout d'une référence projet à projet (p2p) .NET</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to add project to project (p2p) reference</source>
|
||||
<target state="new">Command to add project to project (p2p) reference</target>
|
||||
<note></note>
|
||||
<target state="translated">Commande permettant d'ajouter une référence projet à projet (p2p)</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppHelpText">
|
||||
<source>Project to project references to add</source>
|
||||
<target state="new">Project to project references to add</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdProject">
|
||||
<source>PROJECT</source>
|
||||
<target state="new">PROJECT</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdProjectDescription">
|
||||
<source>The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.</source>
|
||||
<target state="new">The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFramework">
|
||||
<source>FRAMEWORK</source>
|
||||
<target state="new">FRAMEWORK</target>
|
||||
<note></note>
|
||||
<target state="translated">Références projet à projet à ajouter</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFrameworkDescription">
|
||||
<source>Add reference only when targetting a specific framework</source>
|
||||
<target state="new">Add reference only when targetting a specific framework</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdForceDescription">
|
||||
<source>Add reference even if it does not exist, do not convert paths to relative</source>
|
||||
<target state="new">Add reference even if it does not exist, do not convert paths to relative</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectException">
|
||||
<source>Project</source>
|
||||
<target state="new">Project</target>
|
||||
<note></note>
|
||||
<target state="translated">Ajouter une référence uniquement en cas de ciblage d'un framework spécifique</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -3,55 +3,25 @@
|
|||
<file datatype="xml" source-language="en" target-language="it" original="src/dotnet/commands/dotnet-add/dotnet-add-p2p/LocalizableStrings.resx">
|
||||
<body>
|
||||
<group id="src/dotnet/commands/dotnet-add/dotnet-add-p2p/LocalizableStrings.resx" />
|
||||
<trans-unit id="SpecifyAtLeastOneReferenceToAdd">
|
||||
<source>You must specify at least one reference to add. Please run dotnet add --help for more information.</source>
|
||||
<target state="new">You must specify at least one reference to add. Please run dotnet add --help for more information.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Add Project to Project (p2p) reference Command</source>
|
||||
<target state="new">.NET Add Project to Project (p2p) reference Command</target>
|
||||
<note></note>
|
||||
<target state="translated">Comando Aggiungi riferimento P2P (da progetto a progetto) .NET</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to add project to project (p2p) reference</source>
|
||||
<target state="new">Command to add project to project (p2p) reference</target>
|
||||
<note></note>
|
||||
<target state="translated">Comando per aggiungere il riferimento P2P (da progetto a progetto)</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppHelpText">
|
||||
<source>Project to project references to add</source>
|
||||
<target state="new">Project to project references to add</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdProject">
|
||||
<source>PROJECT</source>
|
||||
<target state="new">PROJECT</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdProjectDescription">
|
||||
<source>The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.</source>
|
||||
<target state="new">The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFramework">
|
||||
<source>FRAMEWORK</source>
|
||||
<target state="new">FRAMEWORK</target>
|
||||
<note></note>
|
||||
<target state="translated">Riferimenti P2P (da progetto a progetto) da aggiungere</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFrameworkDescription">
|
||||
<source>Add reference only when targetting a specific framework</source>
|
||||
<target state="new">Add reference only when targetting a specific framework</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdForceDescription">
|
||||
<source>Add reference even if it does not exist, do not convert paths to relative</source>
|
||||
<target state="new">Add reference even if it does not exist, do not convert paths to relative</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectException">
|
||||
<source>Project</source>
|
||||
<target state="new">Project</target>
|
||||
<note></note>
|
||||
<target state="translated">Aggiunge il riferimento solo se destinato a un framework specifico</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -3,55 +3,25 @@
|
|||
<file datatype="xml" source-language="en" target-language="ja" original="src/dotnet/commands/dotnet-add/dotnet-add-p2p/LocalizableStrings.resx">
|
||||
<body>
|
||||
<group id="src/dotnet/commands/dotnet-add/dotnet-add-p2p/LocalizableStrings.resx" />
|
||||
<trans-unit id="SpecifyAtLeastOneReferenceToAdd">
|
||||
<source>You must specify at least one reference to add. Please run dotnet add --help for more information.</source>
|
||||
<target state="new">You must specify at least one reference to add. Please run dotnet add --help for more information.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Add Project to Project (p2p) reference Command</source>
|
||||
<target state="new">.NET Add Project to Project (p2p) reference Command</target>
|
||||
<note></note>
|
||||
<target state="translated">.NET Add Project to Project (p2p) 参照コマンド</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to add project to project (p2p) reference</source>
|
||||
<target state="new">Command to add project to project (p2p) reference</target>
|
||||
<note></note>
|
||||
<target state="translated">project to project (p2p) 参照を追加するコマンド</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppHelpText">
|
||||
<source>Project to project references to add</source>
|
||||
<target state="new">Project to project references to add</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdProject">
|
||||
<source>PROJECT</source>
|
||||
<target state="new">PROJECT</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdProjectDescription">
|
||||
<source>The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.</source>
|
||||
<target state="new">The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFramework">
|
||||
<source>FRAMEWORK</source>
|
||||
<target state="new">FRAMEWORK</target>
|
||||
<note></note>
|
||||
<target state="translated">追加する Project to project 参照</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFrameworkDescription">
|
||||
<source>Add reference only when targetting a specific framework</source>
|
||||
<target state="new">Add reference only when targetting a specific framework</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdForceDescription">
|
||||
<source>Add reference even if it does not exist, do not convert paths to relative</source>
|
||||
<target state="new">Add reference even if it does not exist, do not convert paths to relative</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectException">
|
||||
<source>Project</source>
|
||||
<target state="new">Project</target>
|
||||
<note></note>
|
||||
<target state="translated">特定のフレームワークを対象とする場合にのみ参照を追加する</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -3,55 +3,25 @@
|
|||
<file datatype="xml" source-language="en" target-language="ko" original="src/dotnet/commands/dotnet-add/dotnet-add-p2p/LocalizableStrings.resx">
|
||||
<body>
|
||||
<group id="src/dotnet/commands/dotnet-add/dotnet-add-p2p/LocalizableStrings.resx" />
|
||||
<trans-unit id="SpecifyAtLeastOneReferenceToAdd">
|
||||
<source>You must specify at least one reference to add. Please run dotnet add --help for more information.</source>
|
||||
<target state="new">You must specify at least one reference to add. Please run dotnet add --help for more information.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Add Project to Project (p2p) reference Command</source>
|
||||
<target state="new">.NET Add Project to Project (p2p) reference Command</target>
|
||||
<note></note>
|
||||
<target state="translated">.NET p2p(프로젝트 간) 참조 추가 명령</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to add project to project (p2p) reference</source>
|
||||
<target state="new">Command to add project to project (p2p) reference</target>
|
||||
<note></note>
|
||||
<target state="translated">p2p(프로젝트 간) 참조를 추가하는 명령입니다.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppHelpText">
|
||||
<source>Project to project references to add</source>
|
||||
<target state="new">Project to project references to add</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdProject">
|
||||
<source>PROJECT</source>
|
||||
<target state="new">PROJECT</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdProjectDescription">
|
||||
<source>The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.</source>
|
||||
<target state="new">The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFramework">
|
||||
<source>FRAMEWORK</source>
|
||||
<target state="new">FRAMEWORK</target>
|
||||
<note></note>
|
||||
<target state="translated">추가할 프로젝트 간 참조입니다.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFrameworkDescription">
|
||||
<source>Add reference only when targetting a specific framework</source>
|
||||
<target state="new">Add reference only when targetting a specific framework</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdForceDescription">
|
||||
<source>Add reference even if it does not exist, do not convert paths to relative</source>
|
||||
<target state="new">Add reference even if it does not exist, do not convert paths to relative</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectException">
|
||||
<source>Project</source>
|
||||
<target state="new">Project</target>
|
||||
<note></note>
|
||||
<target state="translated">특정 프레임워크를 대상으로 지정할 때에만 참조를 추가합니다.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -3,55 +3,25 @@
|
|||
<file datatype="xml" source-language="en" target-language="pl" original="src/dotnet/commands/dotnet-add/dotnet-add-p2p/LocalizableStrings.resx">
|
||||
<body>
|
||||
<group id="src/dotnet/commands/dotnet-add/dotnet-add-p2p/LocalizableStrings.resx" />
|
||||
<trans-unit id="SpecifyAtLeastOneReferenceToAdd">
|
||||
<source>You must specify at least one reference to add. Please run dotnet add --help for more information.</source>
|
||||
<target state="new">You must specify at least one reference to add. Please run dotnet add --help for more information.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Add Project to Project (p2p) reference Command</source>
|
||||
<target state="new">.NET Add Project to Project (p2p) reference Command</target>
|
||||
<note></note>
|
||||
<target state="translated">Polecenie dodawania odwołania między projektami (p2p) dla platformy .NET</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to add project to project (p2p) reference</source>
|
||||
<target state="new">Command to add project to project (p2p) reference</target>
|
||||
<note></note>
|
||||
<target state="translated">Polecenie służące do dodania odwołania między projektami (p2p)</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppHelpText">
|
||||
<source>Project to project references to add</source>
|
||||
<target state="new">Project to project references to add</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdProject">
|
||||
<source>PROJECT</source>
|
||||
<target state="new">PROJECT</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdProjectDescription">
|
||||
<source>The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.</source>
|
||||
<target state="new">The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFramework">
|
||||
<source>FRAMEWORK</source>
|
||||
<target state="new">FRAMEWORK</target>
|
||||
<note></note>
|
||||
<target state="translated">Odwołania między projektami, które mają zostać dodane</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFrameworkDescription">
|
||||
<source>Add reference only when targetting a specific framework</source>
|
||||
<target state="new">Add reference only when targetting a specific framework</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdForceDescription">
|
||||
<source>Add reference even if it does not exist, do not convert paths to relative</source>
|
||||
<target state="new">Add reference even if it does not exist, do not convert paths to relative</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectException">
|
||||
<source>Project</source>
|
||||
<target state="new">Project</target>
|
||||
<note></note>
|
||||
<target state="translated">Dodaj odwołanie tylko w przypadku określenia konkretnej platformy docelowej</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -3,55 +3,25 @@
|
|||
<file datatype="xml" source-language="en" target-language="pt-BR" original="src/dotnet/commands/dotnet-add/dotnet-add-p2p/LocalizableStrings.resx">
|
||||
<body>
|
||||
<group id="src/dotnet/commands/dotnet-add/dotnet-add-p2p/LocalizableStrings.resx" />
|
||||
<trans-unit id="SpecifyAtLeastOneReferenceToAdd">
|
||||
<source>You must specify at least one reference to add. Please run dotnet add --help for more information.</source>
|
||||
<target state="new">You must specify at least one reference to add. Please run dotnet add --help for more information.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Add Project to Project (p2p) reference Command</source>
|
||||
<target state="new">.NET Add Project to Project (p2p) reference Command</target>
|
||||
<note></note>
|
||||
<target state="translated">Comando Add Project to Project (p2p) reference do .NET</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to add project to project (p2p) reference</source>
|
||||
<target state="new">Command to add project to project (p2p) reference</target>
|
||||
<note></note>
|
||||
<target state="translated">Comando para adicionar a referência p2p (projeto para projeto)</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppHelpText">
|
||||
<source>Project to project references to add</source>
|
||||
<target state="new">Project to project references to add</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdProject">
|
||||
<source>PROJECT</source>
|
||||
<target state="new">PROJECT</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdProjectDescription">
|
||||
<source>The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.</source>
|
||||
<target state="new">The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFramework">
|
||||
<source>FRAMEWORK</source>
|
||||
<target state="new">FRAMEWORK</target>
|
||||
<note></note>
|
||||
<target state="translated">Referências de projeto para projeto a serem adicionadas</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFrameworkDescription">
|
||||
<source>Add reference only when targetting a specific framework</source>
|
||||
<target state="new">Add reference only when targetting a specific framework</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdForceDescription">
|
||||
<source>Add reference even if it does not exist, do not convert paths to relative</source>
|
||||
<target state="new">Add reference even if it does not exist, do not convert paths to relative</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectException">
|
||||
<source>Project</source>
|
||||
<target state="new">Project</target>
|
||||
<note></note>
|
||||
<target state="translated">Adicionar referência apenas ao visar uma estrutura específica</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -3,55 +3,25 @@
|
|||
<file datatype="xml" source-language="en" target-language="ru" original="src/dotnet/commands/dotnet-add/dotnet-add-p2p/LocalizableStrings.resx">
|
||||
<body>
|
||||
<group id="src/dotnet/commands/dotnet-add/dotnet-add-p2p/LocalizableStrings.resx" />
|
||||
<trans-unit id="SpecifyAtLeastOneReferenceToAdd">
|
||||
<source>You must specify at least one reference to add. Please run dotnet add --help for more information.</source>
|
||||
<target state="new">You must specify at least one reference to add. Please run dotnet add --help for more information.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Add Project to Project (p2p) reference Command</source>
|
||||
<target state="new">.NET Add Project to Project (p2p) reference Command</target>
|
||||
<note></note>
|
||||
<target state="translated">Команда .NET "Добавить ссылку проекта на проект (p2p)"</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to add project to project (p2p) reference</source>
|
||||
<target state="new">Command to add project to project (p2p) reference</target>
|
||||
<note></note>
|
||||
<target state="translated">Команда для добавления ссылки проекта на проект (p2p).</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppHelpText">
|
||||
<source>Project to project references to add</source>
|
||||
<target state="new">Project to project references to add</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdProject">
|
||||
<source>PROJECT</source>
|
||||
<target state="new">PROJECT</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdProjectDescription">
|
||||
<source>The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.</source>
|
||||
<target state="new">The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFramework">
|
||||
<source>FRAMEWORK</source>
|
||||
<target state="new">FRAMEWORK</target>
|
||||
<note></note>
|
||||
<target state="translated">Добавляемые ссылки проекта на проект.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFrameworkDescription">
|
||||
<source>Add reference only when targetting a specific framework</source>
|
||||
<target state="new">Add reference only when targetting a specific framework</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdForceDescription">
|
||||
<source>Add reference even if it does not exist, do not convert paths to relative</source>
|
||||
<target state="new">Add reference even if it does not exist, do not convert paths to relative</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectException">
|
||||
<source>Project</source>
|
||||
<target state="new">Project</target>
|
||||
<note></note>
|
||||
<target state="translated">Добавлять ссылку только при выборе конкретной целевой платформы</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -3,55 +3,25 @@
|
|||
<file datatype="xml" source-language="en" target-language="tr" original="src/dotnet/commands/dotnet-add/dotnet-add-p2p/LocalizableStrings.resx">
|
||||
<body>
|
||||
<group id="src/dotnet/commands/dotnet-add/dotnet-add-p2p/LocalizableStrings.resx" />
|
||||
<trans-unit id="SpecifyAtLeastOneReferenceToAdd">
|
||||
<source>You must specify at least one reference to add. Please run dotnet add --help for more information.</source>
|
||||
<target state="new">You must specify at least one reference to add. Please run dotnet add --help for more information.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Add Project to Project (p2p) reference Command</source>
|
||||
<target state="new">.NET Add Project to Project (p2p) reference Command</target>
|
||||
<note></note>
|
||||
<target state="translated">.NET Add Project to Project (p2p) reference Komutu</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to add project to project (p2p) reference</source>
|
||||
<target state="new">Command to add project to project (p2p) reference</target>
|
||||
<note></note>
|
||||
<target state="translated">Projeden projeye (p2p) başvuru ekleme komutu</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppHelpText">
|
||||
<source>Project to project references to add</source>
|
||||
<target state="new">Project to project references to add</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdProject">
|
||||
<source>PROJECT</source>
|
||||
<target state="new">PROJECT</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdProjectDescription">
|
||||
<source>The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.</source>
|
||||
<target state="new">The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFramework">
|
||||
<source>FRAMEWORK</source>
|
||||
<target state="new">FRAMEWORK</target>
|
||||
<note></note>
|
||||
<target state="translated">Eklenecek olan, projeden projeye başvurular</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFrameworkDescription">
|
||||
<source>Add reference only when targetting a specific framework</source>
|
||||
<target state="new">Add reference only when targetting a specific framework</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdForceDescription">
|
||||
<source>Add reference even if it does not exist, do not convert paths to relative</source>
|
||||
<target state="new">Add reference even if it does not exist, do not convert paths to relative</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectException">
|
||||
<source>Project</source>
|
||||
<target state="new">Project</target>
|
||||
<note></note>
|
||||
<target state="translated">Yalnızca belirli bir çerçeveyi hedeflerken başvuru ekler</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -3,45 +3,21 @@
|
|||
<file datatype="xml" source-language="en" original="src/dotnet/commands/dotnet-add/dotnet-add-p2p/LocalizableStrings.resx">
|
||||
<body>
|
||||
<group id="src/dotnet/commands/dotnet-add/dotnet-add-p2p/LocalizableStrings.resx" />
|
||||
<trans-unit id="SpecifyAtLeastOneReferenceToAdd">
|
||||
<source>You must specify at least one reference to add. Please run dotnet add --help for more information.</source>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Add Project to Project (p2p) reference Command</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to add project to project (p2p) reference</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppHelpText">
|
||||
<source>Project to project references to add</source>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdProject">
|
||||
<source>PROJECT</source>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdProjectDescription">
|
||||
<source>The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.</source>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFramework">
|
||||
<source>FRAMEWORK</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFrameworkDescription">
|
||||
<source>Add reference only when targetting a specific framework</source>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdForceDescription">
|
||||
<source>Add reference even if it does not exist, do not convert paths to relative</source>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectException">
|
||||
<source>Project</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -3,55 +3,25 @@
|
|||
<file datatype="xml" source-language="en" target-language="zh-Hans" original="src/dotnet/commands/dotnet-add/dotnet-add-p2p/LocalizableStrings.resx">
|
||||
<body>
|
||||
<group id="src/dotnet/commands/dotnet-add/dotnet-add-p2p/LocalizableStrings.resx" />
|
||||
<trans-unit id="SpecifyAtLeastOneReferenceToAdd">
|
||||
<source>You must specify at least one reference to add. Please run dotnet add --help for more information.</source>
|
||||
<target state="new">You must specify at least one reference to add. Please run dotnet add --help for more information.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Add Project to Project (p2p) reference Command</source>
|
||||
<target state="new">.NET Add Project to Project (p2p) reference Command</target>
|
||||
<note></note>
|
||||
<target state="translated">用于项目到项目(p2p)引用的 .NET 添加命令</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to add project to project (p2p) reference</source>
|
||||
<target state="new">Command to add project to project (p2p) reference</target>
|
||||
<note></note>
|
||||
<target state="translated">用于添加项目到项目(p2p)引用的命令</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppHelpText">
|
||||
<source>Project to project references to add</source>
|
||||
<target state="new">Project to project references to add</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdProject">
|
||||
<source>PROJECT</source>
|
||||
<target state="new">PROJECT</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdProjectDescription">
|
||||
<source>The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.</source>
|
||||
<target state="new">The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFramework">
|
||||
<source>FRAMEWORK</source>
|
||||
<target state="new">FRAMEWORK</target>
|
||||
<note></note>
|
||||
<target state="translated">要添加的项目到项目引用</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFrameworkDescription">
|
||||
<source>Add reference only when targetting a specific framework</source>
|
||||
<target state="new">Add reference only when targetting a specific framework</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdForceDescription">
|
||||
<source>Add reference even if it does not exist, do not convert paths to relative</source>
|
||||
<target state="new">Add reference even if it does not exist, do not convert paths to relative</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectException">
|
||||
<source>Project</source>
|
||||
<target state="new">Project</target>
|
||||
<note></note>
|
||||
<target state="translated">仅针对特定框架添加引用</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -3,55 +3,25 @@
|
|||
<file datatype="xml" source-language="en" target-language="zh-Hant" original="src/dotnet/commands/dotnet-add/dotnet-add-p2p/LocalizableStrings.resx">
|
||||
<body>
|
||||
<group id="src/dotnet/commands/dotnet-add/dotnet-add-p2p/LocalizableStrings.resx" />
|
||||
<trans-unit id="SpecifyAtLeastOneReferenceToAdd">
|
||||
<source>You must specify at least one reference to add. Please run dotnet add --help for more information.</source>
|
||||
<target state="new">You must specify at least one reference to add. Please run dotnet add --help for more information.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Add Project to Project (p2p) reference Command</source>
|
||||
<target state="new">.NET Add Project to Project (p2p) reference Command</target>
|
||||
<note></note>
|
||||
<target state="translated">.NET 新增專案對專案 (p2p) 參考命令</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to add project to project (p2p) reference</source>
|
||||
<target state="new">Command to add project to project (p2p) reference</target>
|
||||
<note></note>
|
||||
<target state="translated">用以新增專案對專案 (p2p) 參考的命令</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppHelpText">
|
||||
<source>Project to project references to add</source>
|
||||
<target state="new">Project to project references to add</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdProject">
|
||||
<source>PROJECT</source>
|
||||
<target state="new">PROJECT</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdProjectDescription">
|
||||
<source>The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.</source>
|
||||
<target state="new">The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFramework">
|
||||
<source>FRAMEWORK</source>
|
||||
<target state="new">FRAMEWORK</target>
|
||||
<note></note>
|
||||
<target state="translated">要新增的專案對專案參考</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFrameworkDescription">
|
||||
<source>Add reference only when targetting a specific framework</source>
|
||||
<target state="new">Add reference only when targetting a specific framework</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdForceDescription">
|
||||
<source>Add reference even if it does not exist, do not convert paths to relative</source>
|
||||
<target state="new">Add reference even if it does not exist, do not convert paths to relative</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectException">
|
||||
<source>Project</source>
|
||||
<target state="new">Project</target>
|
||||
<note></note>
|
||||
<target state="translated">只有在以特定架構為目標時才新增參考</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -0,0 +1,23 @@
|
|||
<?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="src/dotnet/commands/dotnet-add/dotnet-add-proj/LocalizableStrings.resx">
|
||||
<body>
|
||||
<group id="src/dotnet/commands/dotnet-add/dotnet-add-proj/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Add Project to Solution Command</source>
|
||||
<target state="new">.NET Add Project to Solution Command</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to add project to solution</source>
|
||||
<target state="new">Command to add project to solution</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppHelpText">
|
||||
<source>Projects to add to solution</source>
|
||||
<target state="new">Projects to add to solution</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
|
@ -0,0 +1,23 @@
|
|||
<?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="src/dotnet/commands/dotnet-add/dotnet-add-proj/LocalizableStrings.resx">
|
||||
<body>
|
||||
<group id="src/dotnet/commands/dotnet-add/dotnet-add-proj/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Add Project to Solution Command</source>
|
||||
<target state="new">.NET Add Project to Solution Command</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to add project to solution</source>
|
||||
<target state="new">Command to add project to solution</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppHelpText">
|
||||
<source>Projects to add to solution</source>
|
||||
<target state="new">Projects to add to solution</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
|
@ -0,0 +1,23 @@
|
|||
<?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="src/dotnet/commands/dotnet-add/dotnet-add-proj/LocalizableStrings.resx">
|
||||
<body>
|
||||
<group id="src/dotnet/commands/dotnet-add/dotnet-add-proj/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Add Project to Solution Command</source>
|
||||
<target state="new">.NET Add Project to Solution Command</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to add project to solution</source>
|
||||
<target state="new">Command to add project to solution</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppHelpText">
|
||||
<source>Projects to add to solution</source>
|
||||
<target state="new">Projects to add to solution</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
|
@ -0,0 +1,23 @@
|
|||
<?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="src/dotnet/commands/dotnet-add/dotnet-add-proj/LocalizableStrings.resx">
|
||||
<body>
|
||||
<group id="src/dotnet/commands/dotnet-add/dotnet-add-proj/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Add Project to Solution Command</source>
|
||||
<target state="new">.NET Add Project to Solution Command</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to add project to solution</source>
|
||||
<target state="new">Command to add project to solution</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppHelpText">
|
||||
<source>Projects to add to solution</source>
|
||||
<target state="new">Projects to add to solution</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
|
@ -0,0 +1,23 @@
|
|||
<?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="src/dotnet/commands/dotnet-add/dotnet-add-proj/LocalizableStrings.resx">
|
||||
<body>
|
||||
<group id="src/dotnet/commands/dotnet-add/dotnet-add-proj/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Add Project to Solution Command</source>
|
||||
<target state="new">.NET Add Project to Solution Command</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to add project to solution</source>
|
||||
<target state="new">Command to add project to solution</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppHelpText">
|
||||
<source>Projects to add to solution</source>
|
||||
<target state="new">Projects to add to solution</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
|
@ -0,0 +1,23 @@
|
|||
<?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="src/dotnet/commands/dotnet-add/dotnet-add-proj/LocalizableStrings.resx">
|
||||
<body>
|
||||
<group id="src/dotnet/commands/dotnet-add/dotnet-add-proj/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Add Project to Solution Command</source>
|
||||
<target state="new">.NET Add Project to Solution Command</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to add project to solution</source>
|
||||
<target state="new">Command to add project to solution</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppHelpText">
|
||||
<source>Projects to add to solution</source>
|
||||
<target state="new">Projects to add to solution</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
|
@ -0,0 +1,23 @@
|
|||
<?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="src/dotnet/commands/dotnet-add/dotnet-add-proj/LocalizableStrings.resx">
|
||||
<body>
|
||||
<group id="src/dotnet/commands/dotnet-add/dotnet-add-proj/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Add Project to Solution Command</source>
|
||||
<target state="new">.NET Add Project to Solution Command</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to add project to solution</source>
|
||||
<target state="new">Command to add project to solution</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppHelpText">
|
||||
<source>Projects to add to solution</source>
|
||||
<target state="new">Projects to add to solution</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
|
@ -0,0 +1,23 @@
|
|||
<?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="src/dotnet/commands/dotnet-add/dotnet-add-proj/LocalizableStrings.resx">
|
||||
<body>
|
||||
<group id="src/dotnet/commands/dotnet-add/dotnet-add-proj/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Add Project to Solution Command</source>
|
||||
<target state="new">.NET Add Project to Solution Command</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to add project to solution</source>
|
||||
<target state="new">Command to add project to solution</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppHelpText">
|
||||
<source>Projects to add to solution</source>
|
||||
<target state="new">Projects to add to solution</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
|
@ -0,0 +1,23 @@
|
|||
<?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="src/dotnet/commands/dotnet-add/dotnet-add-proj/LocalizableStrings.resx">
|
||||
<body>
|
||||
<group id="src/dotnet/commands/dotnet-add/dotnet-add-proj/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Add Project to Solution Command</source>
|
||||
<target state="new">.NET Add Project to Solution Command</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to add project to solution</source>
|
||||
<target state="new">Command to add project to solution</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppHelpText">
|
||||
<source>Projects to add to solution</source>
|
||||
<target state="new">Projects to add to solution</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
|
@ -0,0 +1,23 @@
|
|||
<?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="src/dotnet/commands/dotnet-add/dotnet-add-proj/LocalizableStrings.resx">
|
||||
<body>
|
||||
<group id="src/dotnet/commands/dotnet-add/dotnet-add-proj/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Add Project to Solution Command</source>
|
||||
<target state="new">.NET Add Project to Solution Command</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to add project to solution</source>
|
||||
<target state="new">Command to add project to solution</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppHelpText">
|
||||
<source>Projects to add to solution</source>
|
||||
<target state="new">Projects to add to solution</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
|
@ -0,0 +1,23 @@
|
|||
<?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="src/dotnet/commands/dotnet-add/dotnet-add-proj/LocalizableStrings.resx">
|
||||
<body>
|
||||
<group id="src/dotnet/commands/dotnet-add/dotnet-add-proj/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Add Project to Solution Command</source>
|
||||
<target state="new">.NET Add Project to Solution Command</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to add project to solution</source>
|
||||
<target state="new">Command to add project to solution</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppHelpText">
|
||||
<source>Projects to add to solution</source>
|
||||
<target state="new">Projects to add to solution</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
|
@ -0,0 +1,20 @@
|
|||
<?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" original="src/dotnet/commands/dotnet-add/dotnet-add-proj/LocalizableStrings.resx">
|
||||
<body>
|
||||
<group id="src/dotnet/commands/dotnet-add/dotnet-add-proj/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Add Project to Solution Command</source>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to add project to solution</source>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppHelpText">
|
||||
<source>Projects to add to solution</source>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
|
@ -0,0 +1,23 @@
|
|||
<?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="src/dotnet/commands/dotnet-add/dotnet-add-proj/LocalizableStrings.resx">
|
||||
<body>
|
||||
<group id="src/dotnet/commands/dotnet-add/dotnet-add-proj/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Add Project to Solution Command</source>
|
||||
<target state="new">.NET Add Project to Solution Command</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to add project to solution</source>
|
||||
<target state="new">Command to add project to solution</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppHelpText">
|
||||
<source>Projects to add to solution</source>
|
||||
<target state="new">Projects to add to solution</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
|
@ -0,0 +1,23 @@
|
|||
<?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="src/dotnet/commands/dotnet-add/dotnet-add-proj/LocalizableStrings.resx">
|
||||
<body>
|
||||
<group id="src/dotnet/commands/dotnet-add/dotnet-add-proj/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Add Project to Solution Command</source>
|
||||
<target state="new">.NET Add Project to Solution Command</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to add project to solution</source>
|
||||
<target state="new">Command to add project to solution</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppHelpText">
|
||||
<source>Projects to add to solution</source>
|
||||
<target state="new">Projects to add to solution</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
|
@ -5,53 +5,8 @@
|
|||
<group id="src/dotnet/commands/dotnet-add/LocalizableStrings.resx" />
|
||||
<trans-unit id="NetAddCommand">
|
||||
<source>.NET Add Command</source>
|
||||
<target state="new">.NET Add Command</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Usage">
|
||||
<source>Usage</source>
|
||||
<target state="new">Usage</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Options">
|
||||
<source>Options</source>
|
||||
<target state="new">Options</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="HelpDefinition">
|
||||
<source>Show help information</source>
|
||||
<target state="new">Show help information</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Arguments">
|
||||
<source>Arguments</source>
|
||||
<target state="new">Arguments</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgumentsObjectDefinition">
|
||||
<source>The object of the operation. If a project file is not specified, it defaults to the current directory.</source>
|
||||
<target state="new">The object of the operation. If a project file is not specified, it defaults to the current directory.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgumentsCommandDefinition">
|
||||
<source>Command to be executed on <object>.</source>
|
||||
<target state="new">Command to be executed on <object>.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgsDefinition">
|
||||
<source>Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments.</source>
|
||||
<target state="new">Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Commands">
|
||||
<source>Commands</source>
|
||||
<target state="new">Commands</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CommandP2PDefinition">
|
||||
<source>Add project to project (p2p) reference to a project</source>
|
||||
<target state="new">Add project to project (p2p) reference to a project</target>
|
||||
<note></note>
|
||||
<target state="translated">Příkaz rozhraní .NET pro přidání</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,53 +5,8 @@
|
|||
<group id="src/dotnet/commands/dotnet-add/LocalizableStrings.resx" />
|
||||
<trans-unit id="NetAddCommand">
|
||||
<source>.NET Add Command</source>
|
||||
<target state="new">.NET Add Command</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Usage">
|
||||
<source>Usage</source>
|
||||
<target state="new">Usage</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Options">
|
||||
<source>Options</source>
|
||||
<target state="new">Options</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="HelpDefinition">
|
||||
<source>Show help information</source>
|
||||
<target state="new">Show help information</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Arguments">
|
||||
<source>Arguments</source>
|
||||
<target state="new">Arguments</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgumentsObjectDefinition">
|
||||
<source>The object of the operation. If a project file is not specified, it defaults to the current directory.</source>
|
||||
<target state="new">The object of the operation. If a project file is not specified, it defaults to the current directory.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgumentsCommandDefinition">
|
||||
<source>Command to be executed on <object>.</source>
|
||||
<target state="new">Command to be executed on <object>.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgsDefinition">
|
||||
<source>Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments.</source>
|
||||
<target state="new">Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Commands">
|
||||
<source>Commands</source>
|
||||
<target state="new">Commands</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CommandP2PDefinition">
|
||||
<source>Add project to project (p2p) reference to a project</source>
|
||||
<target state="new">Add project to project (p2p) reference to a project</target>
|
||||
<note></note>
|
||||
<target state="translated">.NET-Befehl "Add"</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,53 +5,8 @@
|
|||
<group id="src/dotnet/commands/dotnet-add/LocalizableStrings.resx" />
|
||||
<trans-unit id="NetAddCommand">
|
||||
<source>.NET Add Command</source>
|
||||
<target state="new">.NET Add Command</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Usage">
|
||||
<source>Usage</source>
|
||||
<target state="new">Usage</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Options">
|
||||
<source>Options</source>
|
||||
<target state="new">Options</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="HelpDefinition">
|
||||
<source>Show help information</source>
|
||||
<target state="new">Show help information</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Arguments">
|
||||
<source>Arguments</source>
|
||||
<target state="new">Arguments</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgumentsObjectDefinition">
|
||||
<source>The object of the operation. If a project file is not specified, it defaults to the current directory.</source>
|
||||
<target state="new">The object of the operation. If a project file is not specified, it defaults to the current directory.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgumentsCommandDefinition">
|
||||
<source>Command to be executed on <object>.</source>
|
||||
<target state="new">Command to be executed on <object>.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgsDefinition">
|
||||
<source>Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments.</source>
|
||||
<target state="new">Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Commands">
|
||||
<source>Commands</source>
|
||||
<target state="new">Commands</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CommandP2PDefinition">
|
||||
<source>Add project to project (p2p) reference to a project</source>
|
||||
<target state="new">Add project to project (p2p) reference to a project</target>
|
||||
<note></note>
|
||||
<target state="translated">Comando Add de .NET</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,53 +5,8 @@
|
|||
<group id="src/dotnet/commands/dotnet-add/LocalizableStrings.resx" />
|
||||
<trans-unit id="NetAddCommand">
|
||||
<source>.NET Add Command</source>
|
||||
<target state="new">.NET Add Command</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Usage">
|
||||
<source>Usage</source>
|
||||
<target state="new">Usage</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Options">
|
||||
<source>Options</source>
|
||||
<target state="new">Options</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="HelpDefinition">
|
||||
<source>Show help information</source>
|
||||
<target state="new">Show help information</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Arguments">
|
||||
<source>Arguments</source>
|
||||
<target state="new">Arguments</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgumentsObjectDefinition">
|
||||
<source>The object of the operation. If a project file is not specified, it defaults to the current directory.</source>
|
||||
<target state="new">The object of the operation. If a project file is not specified, it defaults to the current directory.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgumentsCommandDefinition">
|
||||
<source>Command to be executed on <object>.</source>
|
||||
<target state="new">Command to be executed on <object>.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgsDefinition">
|
||||
<source>Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments.</source>
|
||||
<target state="new">Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Commands">
|
||||
<source>Commands</source>
|
||||
<target state="new">Commands</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CommandP2PDefinition">
|
||||
<source>Add project to project (p2p) reference to a project</source>
|
||||
<target state="new">Add project to project (p2p) reference to a project</target>
|
||||
<note></note>
|
||||
<target state="translated">Commande d'ajout .NET</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,53 +5,8 @@
|
|||
<group id="src/dotnet/commands/dotnet-add/LocalizableStrings.resx" />
|
||||
<trans-unit id="NetAddCommand">
|
||||
<source>.NET Add Command</source>
|
||||
<target state="new">.NET Add Command</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Usage">
|
||||
<source>Usage</source>
|
||||
<target state="new">Usage</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Options">
|
||||
<source>Options</source>
|
||||
<target state="new">Options</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="HelpDefinition">
|
||||
<source>Show help information</source>
|
||||
<target state="new">Show help information</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Arguments">
|
||||
<source>Arguments</source>
|
||||
<target state="new">Arguments</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgumentsObjectDefinition">
|
||||
<source>The object of the operation. If a project file is not specified, it defaults to the current directory.</source>
|
||||
<target state="new">The object of the operation. If a project file is not specified, it defaults to the current directory.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgumentsCommandDefinition">
|
||||
<source>Command to be executed on <object>.</source>
|
||||
<target state="new">Command to be executed on <object>.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgsDefinition">
|
||||
<source>Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments.</source>
|
||||
<target state="new">Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Commands">
|
||||
<source>Commands</source>
|
||||
<target state="new">Commands</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CommandP2PDefinition">
|
||||
<source>Add project to project (p2p) reference to a project</source>
|
||||
<target state="new">Add project to project (p2p) reference to a project</target>
|
||||
<note></note>
|
||||
<target state="translated">Comando Aggiungi .NET</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,53 +5,8 @@
|
|||
<group id="src/dotnet/commands/dotnet-add/LocalizableStrings.resx" />
|
||||
<trans-unit id="NetAddCommand">
|
||||
<source>.NET Add Command</source>
|
||||
<target state="new">.NET Add Command</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Usage">
|
||||
<source>Usage</source>
|
||||
<target state="new">Usage</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Options">
|
||||
<source>Options</source>
|
||||
<target state="new">Options</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="HelpDefinition">
|
||||
<source>Show help information</source>
|
||||
<target state="new">Show help information</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Arguments">
|
||||
<source>Arguments</source>
|
||||
<target state="new">Arguments</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgumentsObjectDefinition">
|
||||
<source>The object of the operation. If a project file is not specified, it defaults to the current directory.</source>
|
||||
<target state="new">The object of the operation. If a project file is not specified, it defaults to the current directory.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgumentsCommandDefinition">
|
||||
<source>Command to be executed on <object>.</source>
|
||||
<target state="new">Command to be executed on <object>.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgsDefinition">
|
||||
<source>Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments.</source>
|
||||
<target state="new">Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Commands">
|
||||
<source>Commands</source>
|
||||
<target state="new">Commands</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CommandP2PDefinition">
|
||||
<source>Add project to project (p2p) reference to a project</source>
|
||||
<target state="new">Add project to project (p2p) reference to a project</target>
|
||||
<note></note>
|
||||
<target state="translated">.NET Add コマンド</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,53 +5,8 @@
|
|||
<group id="src/dotnet/commands/dotnet-add/LocalizableStrings.resx" />
|
||||
<trans-unit id="NetAddCommand">
|
||||
<source>.NET Add Command</source>
|
||||
<target state="new">.NET Add Command</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Usage">
|
||||
<source>Usage</source>
|
||||
<target state="new">Usage</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Options">
|
||||
<source>Options</source>
|
||||
<target state="new">Options</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="HelpDefinition">
|
||||
<source>Show help information</source>
|
||||
<target state="new">Show help information</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Arguments">
|
||||
<source>Arguments</source>
|
||||
<target state="new">Arguments</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgumentsObjectDefinition">
|
||||
<source>The object of the operation. If a project file is not specified, it defaults to the current directory.</source>
|
||||
<target state="new">The object of the operation. If a project file is not specified, it defaults to the current directory.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgumentsCommandDefinition">
|
||||
<source>Command to be executed on <object>.</source>
|
||||
<target state="new">Command to be executed on <object>.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgsDefinition">
|
||||
<source>Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments.</source>
|
||||
<target state="new">Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Commands">
|
||||
<source>Commands</source>
|
||||
<target state="new">Commands</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CommandP2PDefinition">
|
||||
<source>Add project to project (p2p) reference to a project</source>
|
||||
<target state="new">Add project to project (p2p) reference to a project</target>
|
||||
<note></note>
|
||||
<target state="translated">.NET 추가 명령</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,53 +5,8 @@
|
|||
<group id="src/dotnet/commands/dotnet-add/LocalizableStrings.resx" />
|
||||
<trans-unit id="NetAddCommand">
|
||||
<source>.NET Add Command</source>
|
||||
<target state="new">.NET Add Command</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Usage">
|
||||
<source>Usage</source>
|
||||
<target state="new">Usage</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Options">
|
||||
<source>Options</source>
|
||||
<target state="new">Options</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="HelpDefinition">
|
||||
<source>Show help information</source>
|
||||
<target state="new">Show help information</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Arguments">
|
||||
<source>Arguments</source>
|
||||
<target state="new">Arguments</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgumentsObjectDefinition">
|
||||
<source>The object of the operation. If a project file is not specified, it defaults to the current directory.</source>
|
||||
<target state="new">The object of the operation. If a project file is not specified, it defaults to the current directory.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgumentsCommandDefinition">
|
||||
<source>Command to be executed on <object>.</source>
|
||||
<target state="new">Command to be executed on <object>.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgsDefinition">
|
||||
<source>Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments.</source>
|
||||
<target state="new">Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Commands">
|
||||
<source>Commands</source>
|
||||
<target state="new">Commands</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CommandP2PDefinition">
|
||||
<source>Add project to project (p2p) reference to a project</source>
|
||||
<target state="new">Add project to project (p2p) reference to a project</target>
|
||||
<note></note>
|
||||
<target state="translated">Polecenie add platformy .NET</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,53 +5,8 @@
|
|||
<group id="src/dotnet/commands/dotnet-add/LocalizableStrings.resx" />
|
||||
<trans-unit id="NetAddCommand">
|
||||
<source>.NET Add Command</source>
|
||||
<target state="new">.NET Add Command</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Usage">
|
||||
<source>Usage</source>
|
||||
<target state="new">Usage</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Options">
|
||||
<source>Options</source>
|
||||
<target state="new">Options</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="HelpDefinition">
|
||||
<source>Show help information</source>
|
||||
<target state="new">Show help information</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Arguments">
|
||||
<source>Arguments</source>
|
||||
<target state="new">Arguments</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgumentsObjectDefinition">
|
||||
<source>The object of the operation. If a project file is not specified, it defaults to the current directory.</source>
|
||||
<target state="new">The object of the operation. If a project file is not specified, it defaults to the current directory.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgumentsCommandDefinition">
|
||||
<source>Command to be executed on <object>.</source>
|
||||
<target state="new">Command to be executed on <object>.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgsDefinition">
|
||||
<source>Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments.</source>
|
||||
<target state="new">Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Commands">
|
||||
<source>Commands</source>
|
||||
<target state="new">Commands</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CommandP2PDefinition">
|
||||
<source>Add project to project (p2p) reference to a project</source>
|
||||
<target state="new">Add project to project (p2p) reference to a project</target>
|
||||
<note></note>
|
||||
<target state="translated">Comando Add do .NET</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,53 +5,8 @@
|
|||
<group id="src/dotnet/commands/dotnet-add/LocalizableStrings.resx" />
|
||||
<trans-unit id="NetAddCommand">
|
||||
<source>.NET Add Command</source>
|
||||
<target state="new">.NET Add Command</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Usage">
|
||||
<source>Usage</source>
|
||||
<target state="new">Usage</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Options">
|
||||
<source>Options</source>
|
||||
<target state="new">Options</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="HelpDefinition">
|
||||
<source>Show help information</source>
|
||||
<target state="new">Show help information</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Arguments">
|
||||
<source>Arguments</source>
|
||||
<target state="new">Arguments</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgumentsObjectDefinition">
|
||||
<source>The object of the operation. If a project file is not specified, it defaults to the current directory.</source>
|
||||
<target state="new">The object of the operation. If a project file is not specified, it defaults to the current directory.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgumentsCommandDefinition">
|
||||
<source>Command to be executed on <object>.</source>
|
||||
<target state="new">Command to be executed on <object>.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgsDefinition">
|
||||
<source>Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments.</source>
|
||||
<target state="new">Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Commands">
|
||||
<source>Commands</source>
|
||||
<target state="new">Commands</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CommandP2PDefinition">
|
||||
<source>Add project to project (p2p) reference to a project</source>
|
||||
<target state="new">Add project to project (p2p) reference to a project</target>
|
||||
<note></note>
|
||||
<target state="translated">Команда .NET "Добавить"</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,53 +5,8 @@
|
|||
<group id="src/dotnet/commands/dotnet-add/LocalizableStrings.resx" />
|
||||
<trans-unit id="NetAddCommand">
|
||||
<source>.NET Add Command</source>
|
||||
<target state="new">.NET Add Command</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Usage">
|
||||
<source>Usage</source>
|
||||
<target state="new">Usage</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Options">
|
||||
<source>Options</source>
|
||||
<target state="new">Options</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="HelpDefinition">
|
||||
<source>Show help information</source>
|
||||
<target state="new">Show help information</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Arguments">
|
||||
<source>Arguments</source>
|
||||
<target state="new">Arguments</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgumentsObjectDefinition">
|
||||
<source>The object of the operation. If a project file is not specified, it defaults to the current directory.</source>
|
||||
<target state="new">The object of the operation. If a project file is not specified, it defaults to the current directory.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgumentsCommandDefinition">
|
||||
<source>Command to be executed on <object>.</source>
|
||||
<target state="new">Command to be executed on <object>.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgsDefinition">
|
||||
<source>Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments.</source>
|
||||
<target state="new">Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Commands">
|
||||
<source>Commands</source>
|
||||
<target state="new">Commands</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CommandP2PDefinition">
|
||||
<source>Add project to project (p2p) reference to a project</source>
|
||||
<target state="new">Add project to project (p2p) reference to a project</target>
|
||||
<note></note>
|
||||
<target state="translated">.NET Add Komutu</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,43 +5,7 @@
|
|||
<group id="src/dotnet/commands/dotnet-add/LocalizableStrings.resx" />
|
||||
<trans-unit id="NetAddCommand">
|
||||
<source>.NET Add Command</source>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Usage">
|
||||
<source>Usage</source>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Options">
|
||||
<source>Options</source>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="HelpDefinition">
|
||||
<source>Show help information</source>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Arguments">
|
||||
<source>Arguments</source>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgumentsObjectDefinition">
|
||||
<source>The object of the operation. If a project file is not specified, it defaults to the current directory.</source>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgumentsCommandDefinition">
|
||||
<source>Command to be executed on <object>.</source>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgsDefinition">
|
||||
<source>Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments.</source>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Commands">
|
||||
<source>Commands</source>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CommandP2PDefinition">
|
||||
<source>Add project to project (p2p) reference to a project</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,53 +5,8 @@
|
|||
<group id="src/dotnet/commands/dotnet-add/LocalizableStrings.resx" />
|
||||
<trans-unit id="NetAddCommand">
|
||||
<source>.NET Add Command</source>
|
||||
<target state="new">.NET Add Command</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Usage">
|
||||
<source>Usage</source>
|
||||
<target state="new">Usage</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Options">
|
||||
<source>Options</source>
|
||||
<target state="new">Options</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="HelpDefinition">
|
||||
<source>Show help information</source>
|
||||
<target state="new">Show help information</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Arguments">
|
||||
<source>Arguments</source>
|
||||
<target state="new">Arguments</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgumentsObjectDefinition">
|
||||
<source>The object of the operation. If a project file is not specified, it defaults to the current directory.</source>
|
||||
<target state="new">The object of the operation. If a project file is not specified, it defaults to the current directory.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgumentsCommandDefinition">
|
||||
<source>Command to be executed on <object>.</source>
|
||||
<target state="new">Command to be executed on <object>.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgsDefinition">
|
||||
<source>Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments.</source>
|
||||
<target state="new">Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Commands">
|
||||
<source>Commands</source>
|
||||
<target state="new">Commands</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CommandP2PDefinition">
|
||||
<source>Add project to project (p2p) reference to a project</source>
|
||||
<target state="new">Add project to project (p2p) reference to a project</target>
|
||||
<note></note>
|
||||
<target state="translated">.NET 添加命令</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,53 +5,8 @@
|
|||
<group id="src/dotnet/commands/dotnet-add/LocalizableStrings.resx" />
|
||||
<trans-unit id="NetAddCommand">
|
||||
<source>.NET Add Command</source>
|
||||
<target state="new">.NET Add Command</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Usage">
|
||||
<source>Usage</source>
|
||||
<target state="new">Usage</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Options">
|
||||
<source>Options</source>
|
||||
<target state="new">Options</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="HelpDefinition">
|
||||
<source>Show help information</source>
|
||||
<target state="new">Show help information</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Arguments">
|
||||
<source>Arguments</source>
|
||||
<target state="new">Arguments</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgumentsObjectDefinition">
|
||||
<source>The object of the operation. If a project file is not specified, it defaults to the current directory.</source>
|
||||
<target state="new">The object of the operation. If a project file is not specified, it defaults to the current directory.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgumentsCommandDefinition">
|
||||
<source>Command to be executed on <object>.</source>
|
||||
<target state="new">Command to be executed on <object>.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgsDefinition">
|
||||
<source>Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments.</source>
|
||||
<target state="new">Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Commands">
|
||||
<source>Commands</source>
|
||||
<target state="new">Commands</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="CommandP2PDefinition">
|
||||
<source>Add project to project (p2p) reference to a project</source>
|
||||
<target state="new">Add project to project (p2p) reference to a project</target>
|
||||
<note></note>
|
||||
<target state="translated">.NET 新增命令</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,83 +5,83 @@
|
|||
<group id="src/dotnet/commands/dotnet-build/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</source>
|
||||
<target state="new">Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</target>
|
||||
<note></note>
|
||||
<target state="translated">Tvůrce pro platformu .NET Deleguje do MSBuildu cíl buildu v souboru projektu.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Builder</source>
|
||||
<target state="new">.NET Builder</target>
|
||||
<note></note>
|
||||
<target state="translated">.NET Builder</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ConfigurationOptionDescription">
|
||||
<source>Configuration under which to build</source>
|
||||
<target state="new">Configuration under which to build</target>
|
||||
<note></note>
|
||||
<target state="translated">Konfigurace použitá k sestavení</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ConfigurationOptionName">
|
||||
<source>CONFIGURATION</source>
|
||||
<target state="new">CONFIGURATION</target>
|
||||
<note></note>
|
||||
<target state="translated">CONFIGURATION</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="FrameworkOptionDescription">
|
||||
<source>Compile a specific framework</source>
|
||||
<target state="new">Compile a specific framework</target>
|
||||
<note></note>
|
||||
<target state="translated">Umožňuje kompilovat určitou platformu.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="FrameworkOptionName">
|
||||
<source>FRAMEWORK</source>
|
||||
<target state="new">FRAMEWORK</target>
|
||||
<note></note>
|
||||
<target state="translated">FRAMEWORK</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NoDependenciesOptionDescription">
|
||||
<source>Set this flag to ignore project to project references and only build the root project</source>
|
||||
<target state="new">Set this flag to ignore project to project references and only build the root project</target>
|
||||
<note></note>
|
||||
<target state="translated">Když nastavíte tento příznak, ignorují se odkazy mezi projekty a sestaví se jenom kořenový projekt.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NoIncrementialOptionDescription">
|
||||
<source>Set this flag to turn off incremental build</source>
|
||||
<target state="new">Set this flag to turn off incremental build</target>
|
||||
<note></note>
|
||||
<target state="translated">Když nastavíte tento příznak, vypnete přírůstkové sestavení.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="OutputOptionDescription">
|
||||
<source>Directory in which to place outputs</source>
|
||||
<target state="new">Directory in which to place outputs</target>
|
||||
<note></note>
|
||||
<target state="translated">Adresář pro ukládání výstupů</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="OutputOptionName">
|
||||
<source>OUTPUT_DIR</source>
|
||||
<target state="new">OUTPUT_DIR</target>
|
||||
<note></note>
|
||||
<target state="translated">OUTPUT_DIR</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectArgumentDescription">
|
||||
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
|
||||
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
|
||||
<note></note>
|
||||
<target state="translated">Soubor projektu MSBuildu určený k sestavení. Pokud není zadaný soubor projektu, nástroj MSBuild vyhledá v aktuálním pracovním adresáři soubor s příponou, která končí na „proj“, a použije ho.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectArgumentValueName">
|
||||
<source>PROJECT</source>
|
||||
<target state="new">PROJECT</target>
|
||||
<note></note>
|
||||
<target state="translated">PROJECT</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RuntimeOptionDescription">
|
||||
<source>Target runtime to build for. The default is to build a portable application.</source>
|
||||
<target state="new">Target runtime to build for. The default is to build a portable application.</target>
|
||||
<note></note>
|
||||
<target state="translated">Cílový modul runtime pro sestavení. Výchozí možnost je sestavit přenosnou aplikaci.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RuntimeOptionName">
|
||||
<source>RUNTIME_IDENTIFIER</source>
|
||||
<target state="new">RUNTIME_IDENTIFIER</target>
|
||||
<note></note>
|
||||
<target state="translated">RUNTIME_IDENTIFIER</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VersionSuffixOptionDescription">
|
||||
<source>Defines the value for the $(VersionSuffix) property in the project</source>
|
||||
<target state="new">Defines the value for the $(VersionSuffix) property in the project</target>
|
||||
<note></note>
|
||||
<target state="translated">Definuje hodnotu vlastnosti $(VersionSuffix) v projektu.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VersionSuffixOptionName">
|
||||
<source>VERSION_SUFFIX</source>
|
||||
<target state="new">VERSION_SUFFIX</target>
|
||||
<note></note>
|
||||
<target state="translated">VERSION_SUFFIX</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,83 +5,83 @@
|
|||
<group id="src/dotnet/commands/dotnet-build/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</source>
|
||||
<target state="new">Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</target>
|
||||
<note></note>
|
||||
<target state="translated">Generator für die .NET-Plattform. Delegiert an das MSBuild-Ziel "Build" in der Projektdatei.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Builder</source>
|
||||
<target state="new">.NET Builder</target>
|
||||
<note></note>
|
||||
<target state="translated">.NET-Generator</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ConfigurationOptionDescription">
|
||||
<source>Configuration under which to build</source>
|
||||
<target state="new">Configuration under which to build</target>
|
||||
<note></note>
|
||||
<target state="translated">Konfiguration für den Buildvorgang</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ConfigurationOptionName">
|
||||
<source>CONFIGURATION</source>
|
||||
<target state="new">CONFIGURATION</target>
|
||||
<note></note>
|
||||
<target state="translated">CONFIGURATION</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="FrameworkOptionDescription">
|
||||
<source>Compile a specific framework</source>
|
||||
<target state="new">Compile a specific framework</target>
|
||||
<note></note>
|
||||
<target state="translated">Bestimmtes Framework kompilieren</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="FrameworkOptionName">
|
||||
<source>FRAMEWORK</source>
|
||||
<target state="new">FRAMEWORK</target>
|
||||
<note></note>
|
||||
<target state="translated">FRAMEWORK</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NoDependenciesOptionDescription">
|
||||
<source>Set this flag to ignore project to project references and only build the root project</source>
|
||||
<target state="new">Set this flag to ignore project to project references and only build the root project</target>
|
||||
<note></note>
|
||||
<target state="translated">Legen Sie dieses Flag fest, um Projekt-zu-Projekt-Verweise zu ignorieren und nur das Stammprojekt zu erstellen.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NoIncrementialOptionDescription">
|
||||
<source>Set this flag to turn off incremental build</source>
|
||||
<target state="new">Set this flag to turn off incremental build</target>
|
||||
<note></note>
|
||||
<target state="translated">Legen Sie dieses Flag fest, um die inkrementelle Erstellung zu deaktivieren.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="OutputOptionDescription">
|
||||
<source>Directory in which to place outputs</source>
|
||||
<target state="new">Directory in which to place outputs</target>
|
||||
<note></note>
|
||||
<target state="translated">Verzeichnis für Ausgaben</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="OutputOptionName">
|
||||
<source>OUTPUT_DIR</source>
|
||||
<target state="new">OUTPUT_DIR</target>
|
||||
<note></note>
|
||||
<target state="translated">OUTPUT_DIR</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectArgumentDescription">
|
||||
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
|
||||
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
|
||||
<note></note>
|
||||
<target state="translated">Die zu erstellende MSBuild-Projektdatei. Wenn keine Projektdatei angegeben ist, durchsucht MSBuild das aktuelle Arbeitsverzeichnis nach einer Datei mit einer Dateierweiterung, die auf "proj" endet, und verwendet diese Datei.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectArgumentValueName">
|
||||
<source>PROJECT</source>
|
||||
<target state="new">PROJECT</target>
|
||||
<note></note>
|
||||
<target state="translated">PROJECT</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RuntimeOptionDescription">
|
||||
<source>Target runtime to build for. The default is to build a portable application.</source>
|
||||
<target state="new">Target runtime to build for. The default is to build a portable application.</target>
|
||||
<note></note>
|
||||
<target state="translated">Ziellaufzeit für die Erstellung. Standardmäßig wird eine portable Anwendung erstellt.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RuntimeOptionName">
|
||||
<source>RUNTIME_IDENTIFIER</source>
|
||||
<target state="new">RUNTIME_IDENTIFIER</target>
|
||||
<note></note>
|
||||
<target state="translated">RUNTIME_IDENTIFIER</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VersionSuffixOptionDescription">
|
||||
<source>Defines the value for the $(VersionSuffix) property in the project</source>
|
||||
<target state="new">Defines the value for the $(VersionSuffix) property in the project</target>
|
||||
<note></note>
|
||||
<target state="translated">Definiert den Wert für die Eigenschaft "$(VersionSuffix)" im Projekt.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VersionSuffixOptionName">
|
||||
<source>VERSION_SUFFIX</source>
|
||||
<target state="new">VERSION_SUFFIX</target>
|
||||
<note></note>
|
||||
<target state="translated">VERSION_SUFFIX</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,83 +5,83 @@
|
|||
<group id="src/dotnet/commands/dotnet-build/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</source>
|
||||
<target state="new">Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</target>
|
||||
<note></note>
|
||||
<target state="translated">Generador para la plataforma .NET. Delega en el destino “Build” de MSBuild del archivo del proyecto.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Builder</source>
|
||||
<target state="new">.NET Builder</target>
|
||||
<note></note>
|
||||
<target state="translated">Generador para .NET</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ConfigurationOptionDescription">
|
||||
<source>Configuration under which to build</source>
|
||||
<target state="new">Configuration under which to build</target>
|
||||
<note></note>
|
||||
<target state="translated">Configuración para la compilación</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ConfigurationOptionName">
|
||||
<source>CONFIGURATION</source>
|
||||
<target state="new">CONFIGURATION</target>
|
||||
<note></note>
|
||||
<target state="translated">CONFIGURACIÓN</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="FrameworkOptionDescription">
|
||||
<source>Compile a specific framework</source>
|
||||
<target state="new">Compile a specific framework</target>
|
||||
<note></note>
|
||||
<target state="translated">Compilar una plataforma específica</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="FrameworkOptionName">
|
||||
<source>FRAMEWORK</source>
|
||||
<target state="new">FRAMEWORK</target>
|
||||
<note></note>
|
||||
<target state="translated">PLATAFORMA</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NoDependenciesOptionDescription">
|
||||
<source>Set this flag to ignore project to project references and only build the root project</source>
|
||||
<target state="new">Set this flag to ignore project to project references and only build the root project</target>
|
||||
<note></note>
|
||||
<target state="translated">Establezca esta marca para omitir las referencias de proyecto a proyecto y compilar solo el proyecto raíz</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NoIncrementialOptionDescription">
|
||||
<source>Set this flag to turn off incremental build</source>
|
||||
<target state="new">Set this flag to turn off incremental build</target>
|
||||
<note></note>
|
||||
<target state="translated">Establezca esta marca para desactivar una compilación incremental</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="OutputOptionDescription">
|
||||
<source>Directory in which to place outputs</source>
|
||||
<target state="new">Directory in which to place outputs</target>
|
||||
<note></note>
|
||||
<target state="translated">Directorio donde se ponen los archivos de salida</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="OutputOptionName">
|
||||
<source>OUTPUT_DIR</source>
|
||||
<target state="new">OUTPUT_DIR</target>
|
||||
<note></note>
|
||||
<target state="translated">DIRECTORIO_DE_SALIDA</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectArgumentDescription">
|
||||
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
|
||||
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
|
||||
<note></note>
|
||||
<target state="translated">Archivo del proyecto de MSBuild para compilar. Si no se especifica un archivo del proyecto, MSBuild busca en el directorio de trabajo actual un archivo que tenga una extensión de archivo que acabe en “proj” y utiliza ese archivo.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectArgumentValueName">
|
||||
<source>PROJECT</source>
|
||||
<target state="new">PROJECT</target>
|
||||
<note></note>
|
||||
<target state="translated">PROYECTO</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RuntimeOptionDescription">
|
||||
<source>Target runtime to build for. The default is to build a portable application.</source>
|
||||
<target state="new">Target runtime to build for. The default is to build a portable application.</target>
|
||||
<note></note>
|
||||
<target state="translated">Entorno de tiempo de ejecución para el que se compila. La opción predeterminada es compilar una aplicación móvil.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RuntimeOptionName">
|
||||
<source>RUNTIME_IDENTIFIER</source>
|
||||
<target state="new">RUNTIME_IDENTIFIER</target>
|
||||
<note></note>
|
||||
<target state="translated">ID_DEL_ENTORNO_DE_TIEMPO_DE_EJECUCIÓN</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VersionSuffixOptionDescription">
|
||||
<source>Defines the value for the $(VersionSuffix) property in the project</source>
|
||||
<target state="new">Defines the value for the $(VersionSuffix) property in the project</target>
|
||||
<note></note>
|
||||
<target state="translated">Define el valor para la propiedad $(VersionSuffix) del proyecto</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VersionSuffixOptionName">
|
||||
<source>VERSION_SUFFIX</source>
|
||||
<target state="new">VERSION_SUFFIX</target>
|
||||
<note></note>
|
||||
<target state="translated">SUFIJO_DE_VERSIÓN</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,83 +5,83 @@
|
|||
<group id="src/dotnet/commands/dotnet-build/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</source>
|
||||
<target state="new">Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</target>
|
||||
<note></note>
|
||||
<target state="translated">Générateur pour la plateforme .NET. Délègue à la cible 'Build' MSBuild dans le fichier projet.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Builder</source>
|
||||
<target state="new">.NET Builder</target>
|
||||
<note></note>
|
||||
<target state="translated">Générateur .NET</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ConfigurationOptionDescription">
|
||||
<source>Configuration under which to build</source>
|
||||
<target state="new">Configuration under which to build</target>
|
||||
<note></note>
|
||||
<target state="translated">Configuration sous laquelle générer la build</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ConfigurationOptionName">
|
||||
<source>CONFIGURATION</source>
|
||||
<target state="new">CONFIGURATION</target>
|
||||
<note></note>
|
||||
<target state="translated">CONFIGURATION</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="FrameworkOptionDescription">
|
||||
<source>Compile a specific framework</source>
|
||||
<target state="new">Compile a specific framework</target>
|
||||
<note></note>
|
||||
<target state="translated">Compiler un framework spécifique</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="FrameworkOptionName">
|
||||
<source>FRAMEWORK</source>
|
||||
<target state="new">FRAMEWORK</target>
|
||||
<note></note>
|
||||
<target state="translated">FRAMEWORK</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NoDependenciesOptionDescription">
|
||||
<source>Set this flag to ignore project to project references and only build the root project</source>
|
||||
<target state="new">Set this flag to ignore project to project references and only build the root project</target>
|
||||
<note></note>
|
||||
<target state="translated">Définir cet indicateur pour ignorer les références projet à projet et générer uniquement le projet racine</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NoIncrementialOptionDescription">
|
||||
<source>Set this flag to turn off incremental build</source>
|
||||
<target state="new">Set this flag to turn off incremental build</target>
|
||||
<note></note>
|
||||
<target state="translated">Définir cet indicateur pour désactiver la génération incrémentielle</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="OutputOptionDescription">
|
||||
<source>Directory in which to place outputs</source>
|
||||
<target state="new">Directory in which to place outputs</target>
|
||||
<note></note>
|
||||
<target state="translated">Répertoire dans lequel placer les sorties</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="OutputOptionName">
|
||||
<source>OUTPUT_DIR</source>
|
||||
<target state="new">OUTPUT_DIR</target>
|
||||
<note></note>
|
||||
<target state="translated">RÉP_SORTIE</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectArgumentDescription">
|
||||
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
|
||||
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
|
||||
<note></note>
|
||||
<target state="translated">Fichier projet MSBuild à générer. Si aucun fichier projet n'est spécifié, MSBuild recherche dans le répertoire de travail actif un fichier dont l'extension se termine par 'proj' et utilise ce dernier.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectArgumentValueName">
|
||||
<source>PROJECT</source>
|
||||
<target state="new">PROJECT</target>
|
||||
<note></note>
|
||||
<target state="translated">PROJET</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RuntimeOptionDescription">
|
||||
<source>Target runtime to build for. The default is to build a portable application.</source>
|
||||
<target state="new">Target runtime to build for. The default is to build a portable application.</target>
|
||||
<note></note>
|
||||
<target state="translated">Runtime cible de la génération. Par défaut, une application portable est générée.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RuntimeOptionName">
|
||||
<source>RUNTIME_IDENTIFIER</source>
|
||||
<target state="new">RUNTIME_IDENTIFIER</target>
|
||||
<note></note>
|
||||
<target state="translated">IDENTIFICATEUR_RUNTIME</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VersionSuffixOptionDescription">
|
||||
<source>Defines the value for the $(VersionSuffix) property in the project</source>
|
||||
<target state="new">Defines the value for the $(VersionSuffix) property in the project</target>
|
||||
<note></note>
|
||||
<target state="translated">Définit la valeur de la propriété $(VersionSuffix) dans le projet</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VersionSuffixOptionName">
|
||||
<source>VERSION_SUFFIX</source>
|
||||
<target state="new">VERSION_SUFFIX</target>
|
||||
<note></note>
|
||||
<target state="translated">SUFFIXE_VERSION</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,83 +5,83 @@
|
|||
<group id="src/dotnet/commands/dotnet-build/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</source>
|
||||
<target state="new">Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</target>
|
||||
<note></note>
|
||||
<target state="translated">Generatore per la piattaforma .NET. Delegati per la destinazione 'Build' di MSBuild nel file di progetto.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Builder</source>
|
||||
<target state="new">.NET Builder</target>
|
||||
<note></note>
|
||||
<target state="translated">Generatore .NET</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ConfigurationOptionDescription">
|
||||
<source>Configuration under which to build</source>
|
||||
<target state="new">Configuration under which to build</target>
|
||||
<note></note>
|
||||
<target state="translated">Configurazione con cui eseguire la compilazione</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ConfigurationOptionName">
|
||||
<source>CONFIGURATION</source>
|
||||
<target state="new">CONFIGURATION</target>
|
||||
<note></note>
|
||||
<target state="translated">CONFIGURAZIONE</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="FrameworkOptionDescription">
|
||||
<source>Compile a specific framework</source>
|
||||
<target state="new">Compile a specific framework</target>
|
||||
<note></note>
|
||||
<target state="translated">Esegue la compilazione di un framework specifico</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="FrameworkOptionName">
|
||||
<source>FRAMEWORK</source>
|
||||
<target state="new">FRAMEWORK</target>
|
||||
<note></note>
|
||||
<target state="translated">FRAMEWORK</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NoDependenciesOptionDescription">
|
||||
<source>Set this flag to ignore project to project references and only build the root project</source>
|
||||
<target state="new">Set this flag to ignore project to project references and only build the root project</target>
|
||||
<note></note>
|
||||
<target state="translated">Impostare questo flag per ignorare i riferimenti P2P (da progetto a progetto) e compilare solo il progetto radice</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NoIncrementialOptionDescription">
|
||||
<source>Set this flag to turn off incremental build</source>
|
||||
<target state="new">Set this flag to turn off incremental build</target>
|
||||
<note></note>
|
||||
<target state="translated">Impostare questo flag per disattivare la compilazione incrementale</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="OutputOptionDescription">
|
||||
<source>Directory in which to place outputs</source>
|
||||
<target state="new">Directory in which to place outputs</target>
|
||||
<note></note>
|
||||
<target state="translated">Directory in cui inserire gli output</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="OutputOptionName">
|
||||
<source>OUTPUT_DIR</source>
|
||||
<target state="new">OUTPUT_DIR</target>
|
||||
<note></note>
|
||||
<target state="translated">DIR_OUTPUT</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectArgumentDescription">
|
||||
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
|
||||
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
|
||||
<note></note>
|
||||
<target state="translated">File di progetto MSBuild da compilare. Se non si specifica un file di progetto, MSBuild cerca nella directory di lavoro corrente un file la cui estensione termina con `proj` e usa tale file.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectArgumentValueName">
|
||||
<source>PROJECT</source>
|
||||
<target state="new">PROJECT</target>
|
||||
<note></note>
|
||||
<target state="translated">PROGETTO</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RuntimeOptionDescription">
|
||||
<source>Target runtime to build for. The default is to build a portable application.</source>
|
||||
<target state="new">Target runtime to build for. The default is to build a portable application.</target>
|
||||
<note></note>
|
||||
<target state="translated">Runtime di destinazione per cui eseguire la compilazione. Per impostazione predefinita, viene compilata un'applicazione portatile.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RuntimeOptionName">
|
||||
<source>RUNTIME_IDENTIFIER</source>
|
||||
<target state="new">RUNTIME_IDENTIFIER</target>
|
||||
<note></note>
|
||||
<target state="translated">IDENTIFICATORE_RUNTIME</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VersionSuffixOptionDescription">
|
||||
<source>Defines the value for the $(VersionSuffix) property in the project</source>
|
||||
<target state="new">Defines the value for the $(VersionSuffix) property in the project</target>
|
||||
<note></note>
|
||||
<target state="translated">Consente di definire il valore per la proprietà $(VersionSuffix) nel progetto</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VersionSuffixOptionName">
|
||||
<source>VERSION_SUFFIX</source>
|
||||
<target state="new">VERSION_SUFFIX</target>
|
||||
<note></note>
|
||||
<target state="translated">SUFFISSO_VERSIONE</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,83 +5,83 @@
|
|||
<group id="src/dotnet/commands/dotnet-build/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</source>
|
||||
<target state="new">Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</target>
|
||||
<note></note>
|
||||
<target state="translated">.NET Platform 用ビルダープロジェクト ファイル内の MSBuild 'Build' ターゲットへのデリゲート。</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Builder</source>
|
||||
<target state="new">.NET Builder</target>
|
||||
<note></note>
|
||||
<target state="translated">.NET Builder</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ConfigurationOptionDescription">
|
||||
<source>Configuration under which to build</source>
|
||||
<target state="new">Configuration under which to build</target>
|
||||
<note></note>
|
||||
<target state="translated">構築する構成</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ConfigurationOptionName">
|
||||
<source>CONFIGURATION</source>
|
||||
<target state="new">CONFIGURATION</target>
|
||||
<note></note>
|
||||
<target state="translated">CONFIGURATION</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="FrameworkOptionDescription">
|
||||
<source>Compile a specific framework</source>
|
||||
<target state="new">Compile a specific framework</target>
|
||||
<note></note>
|
||||
<target state="translated">特定のフレームワークをコンパイルする</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="FrameworkOptionName">
|
||||
<source>FRAMEWORK</source>
|
||||
<target state="new">FRAMEWORK</target>
|
||||
<note></note>
|
||||
<target state="translated">FRAMEWORK</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NoDependenciesOptionDescription">
|
||||
<source>Set this flag to ignore project to project references and only build the root project</source>
|
||||
<target state="new">Set this flag to ignore project to project references and only build the root project</target>
|
||||
<note></note>
|
||||
<target state="translated">project to project 参照を無視して、ルート プロジェクトのみを構築するには、このフラグを設定します</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NoIncrementialOptionDescription">
|
||||
<source>Set this flag to turn off incremental build</source>
|
||||
<target state="new">Set this flag to turn off incremental build</target>
|
||||
<note></note>
|
||||
<target state="translated">インクリメンタル ビルドを無効にするには、このフラグを設定します</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="OutputOptionDescription">
|
||||
<source>Directory in which to place outputs</source>
|
||||
<target state="new">Directory in which to place outputs</target>
|
||||
<note></note>
|
||||
<target state="translated">出力を配置するディレクトリ</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="OutputOptionName">
|
||||
<source>OUTPUT_DIR</source>
|
||||
<target state="new">OUTPUT_DIR</target>
|
||||
<note></note>
|
||||
<target state="translated">OUTPUT_DIR</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectArgumentDescription">
|
||||
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
|
||||
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
|
||||
<note></note>
|
||||
<target state="translated">構築する MSBuild プロジェクト ファイル。プロジェクト ファイルを指定しなかった場合、MSBuild は現在の作業ディレクトリの中から "proj" で終わるファイル拡張子を検索し、そのファイルを使用します。</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectArgumentValueName">
|
||||
<source>PROJECT</source>
|
||||
<target state="new">PROJECT</target>
|
||||
<note></note>
|
||||
<target state="translated">PROJECT</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RuntimeOptionDescription">
|
||||
<source>Target runtime to build for. The default is to build a portable application.</source>
|
||||
<target state="new">Target runtime to build for. The default is to build a portable application.</target>
|
||||
<note></note>
|
||||
<target state="translated">構築用のターゲット ランタイム既定では、ポータブル アプリケーションを構築します。</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RuntimeOptionName">
|
||||
<source>RUNTIME_IDENTIFIER</source>
|
||||
<target state="new">RUNTIME_IDENTIFIER</target>
|
||||
<note></note>
|
||||
<target state="translated">RUNTIME_IDENTIFIER</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VersionSuffixOptionDescription">
|
||||
<source>Defines the value for the $(VersionSuffix) property in the project</source>
|
||||
<target state="new">Defines the value for the $(VersionSuffix) property in the project</target>
|
||||
<note></note>
|
||||
<target state="translated">プロジェクトの $(VersionSuffix) プロパティの値を定義します。</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VersionSuffixOptionName">
|
||||
<source>VERSION_SUFFIX</source>
|
||||
<target state="new">VERSION_SUFFIX</target>
|
||||
<note></note>
|
||||
<target state="translated">VERSION_SUFFIX</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,83 +5,83 @@
|
|||
<group id="src/dotnet/commands/dotnet-build/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</source>
|
||||
<target state="new">Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</target>
|
||||
<note></note>
|
||||
<target state="translated">.NET 플랫폼용 작성기입니다. 프로젝트 파일의 MSBuild '빌드' 대상에 위임합니다.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Builder</source>
|
||||
<target state="new">.NET Builder</target>
|
||||
<note></note>
|
||||
<target state="translated">.NET 작성기</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ConfigurationOptionDescription">
|
||||
<source>Configuration under which to build</source>
|
||||
<target state="new">Configuration under which to build</target>
|
||||
<note></note>
|
||||
<target state="translated">빌드할 구성입니다.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ConfigurationOptionName">
|
||||
<source>CONFIGURATION</source>
|
||||
<target state="new">CONFIGURATION</target>
|
||||
<note></note>
|
||||
<target state="translated">CONFIGURATION</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="FrameworkOptionDescription">
|
||||
<source>Compile a specific framework</source>
|
||||
<target state="new">Compile a specific framework</target>
|
||||
<note></note>
|
||||
<target state="translated">특정 프레임워크를 컴파일합니다.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="FrameworkOptionName">
|
||||
<source>FRAMEWORK</source>
|
||||
<target state="new">FRAMEWORK</target>
|
||||
<note></note>
|
||||
<target state="translated">FRAMEWORK</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NoDependenciesOptionDescription">
|
||||
<source>Set this flag to ignore project to project references and only build the root project</source>
|
||||
<target state="new">Set this flag to ignore project to project references and only build the root project</target>
|
||||
<note></note>
|
||||
<target state="translated">프로젝트 간 참조를 무시하고 루트 프로젝트만 빌드하려면 이 플래그를 설정합니다.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NoIncrementialOptionDescription">
|
||||
<source>Set this flag to turn off incremental build</source>
|
||||
<target state="new">Set this flag to turn off incremental build</target>
|
||||
<note></note>
|
||||
<target state="translated">증분 빌드를 해제하려면 이 플래그를 설정합니다.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="OutputOptionDescription">
|
||||
<source>Directory in which to place outputs</source>
|
||||
<target state="new">Directory in which to place outputs</target>
|
||||
<note></note>
|
||||
<target state="translated">출력을 배치할 디렉터리입니다.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="OutputOptionName">
|
||||
<source>OUTPUT_DIR</source>
|
||||
<target state="new">OUTPUT_DIR</target>
|
||||
<note></note>
|
||||
<target state="translated">OUTPUT_DIR</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectArgumentDescription">
|
||||
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
|
||||
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
|
||||
<note></note>
|
||||
<target state="translated">빌드할 MSBuild 프로젝트 파일입니다. 프로젝트 파일을 지정하지 않으면 MSBuild는 현재 작업 디렉터리에서 파일 확장명이 ‘proj’로 끝나는 파일을 찾아서 사용합니다.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectArgumentValueName">
|
||||
<source>PROJECT</source>
|
||||
<target state="new">PROJECT</target>
|
||||
<note></note>
|
||||
<target state="translated">PROJECT</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RuntimeOptionDescription">
|
||||
<source>Target runtime to build for. The default is to build a portable application.</source>
|
||||
<target state="new">Target runtime to build for. The default is to build a portable application.</target>
|
||||
<note></note>
|
||||
<target state="translated">빌드할 대상 런타임입니다. 기본값은 이식 가능한 응용 프로그램을 빌드하는 것입니다.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RuntimeOptionName">
|
||||
<source>RUNTIME_IDENTIFIER</source>
|
||||
<target state="new">RUNTIME_IDENTIFIER</target>
|
||||
<note></note>
|
||||
<target state="translated">RUNTIME_IDENTIFIER</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VersionSuffixOptionDescription">
|
||||
<source>Defines the value for the $(VersionSuffix) property in the project</source>
|
||||
<target state="new">Defines the value for the $(VersionSuffix) property in the project</target>
|
||||
<note></note>
|
||||
<target state="translated">프로젝트에서 $(VersionSuffix) 속성의 값을 정의합니다.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VersionSuffixOptionName">
|
||||
<source>VERSION_SUFFIX</source>
|
||||
<target state="new">VERSION_SUFFIX</target>
|
||||
<note></note>
|
||||
<target state="translated">VERSION_SUFFIX</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,83 +5,83 @@
|
|||
<group id="src/dotnet/commands/dotnet-build/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</source>
|
||||
<target state="new">Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</target>
|
||||
<note></note>
|
||||
<target state="translated">Konstruktor dla platformy .NET. Deleguje do docelowego elementu kompilacji programu MSBuild w pliku projektu.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Builder</source>
|
||||
<target state="new">.NET Builder</target>
|
||||
<note></note>
|
||||
<target state="translated">Konstruktor platformy .NET</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ConfigurationOptionDescription">
|
||||
<source>Configuration under which to build</source>
|
||||
<target state="new">Configuration under which to build</target>
|
||||
<note></note>
|
||||
<target state="translated">Konfiguracja, przy użyciu której ma zostać przeprowadzona kompilacja</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ConfigurationOptionName">
|
||||
<source>CONFIGURATION</source>
|
||||
<target state="new">CONFIGURATION</target>
|
||||
<note></note>
|
||||
<target state="translated">KONFIGURACJA</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="FrameworkOptionDescription">
|
||||
<source>Compile a specific framework</source>
|
||||
<target state="new">Compile a specific framework</target>
|
||||
<note></note>
|
||||
<target state="translated">Skompiluj określoną platformę</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="FrameworkOptionName">
|
||||
<source>FRAMEWORK</source>
|
||||
<target state="new">FRAMEWORK</target>
|
||||
<note></note>
|
||||
<target state="translated">PLATFORMA</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NoDependenciesOptionDescription">
|
||||
<source>Set this flag to ignore project to project references and only build the root project</source>
|
||||
<target state="new">Set this flag to ignore project to project references and only build the root project</target>
|
||||
<note></note>
|
||||
<target state="translated">Ustaw tę flagę, aby ignorować odwołania między projektami i skompilować tylko projekt główny</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NoIncrementialOptionDescription">
|
||||
<source>Set this flag to turn off incremental build</source>
|
||||
<target state="new">Set this flag to turn off incremental build</target>
|
||||
<note></note>
|
||||
<target state="translated">Ustaw tę flagę, aby wyłączyć kompilację przyrostową</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="OutputOptionDescription">
|
||||
<source>Directory in which to place outputs</source>
|
||||
<target state="new">Directory in which to place outputs</target>
|
||||
<note></note>
|
||||
<target state="translated">Katalog, w którym mają zostać umieszczone dane wyjściowe</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="OutputOptionName">
|
||||
<source>OUTPUT_DIR</source>
|
||||
<target state="new">OUTPUT_DIR</target>
|
||||
<note></note>
|
||||
<target state="translated">KATALOG_WYJŚCIOWY</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectArgumentDescription">
|
||||
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
|
||||
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
|
||||
<note></note>
|
||||
<target state="translated">Plik projektu programu MSBuild do skompilowania. Jeśli nie określono pliku projektu, program MSBuild wyszukuje w bieżącym katalogu roboczym plik, którego rozszerzenie kończy się na „proj”, i używa tego pliku.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectArgumentValueName">
|
||||
<source>PROJECT</source>
|
||||
<target state="new">PROJECT</target>
|
||||
<note></note>
|
||||
<target state="translated">PROJEKT</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RuntimeOptionDescription">
|
||||
<source>Target runtime to build for. The default is to build a portable application.</source>
|
||||
<target state="new">Target runtime to build for. The default is to build a portable application.</target>
|
||||
<note></note>
|
||||
<target state="translated">Docelowe środowisko uruchomieniowe kompilacji. Opcją domyślną jest kompilacja aplikacji przenośnej.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RuntimeOptionName">
|
||||
<source>RUNTIME_IDENTIFIER</source>
|
||||
<target state="new">RUNTIME_IDENTIFIER</target>
|
||||
<note></note>
|
||||
<target state="translated">IDENTYFIKATOR_ŚRODOWISKA_URUCHOMIENIOWEGO</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VersionSuffixOptionDescription">
|
||||
<source>Defines the value for the $(VersionSuffix) property in the project</source>
|
||||
<target state="new">Defines the value for the $(VersionSuffix) property in the project</target>
|
||||
<note></note>
|
||||
<target state="translated">Określa wartość właściwości $(VersionSuffix) w projekcie</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VersionSuffixOptionName">
|
||||
<source>VERSION_SUFFIX</source>
|
||||
<target state="new">VERSION_SUFFIX</target>
|
||||
<note></note>
|
||||
<target state="translated">SUFIKS_WERSJI</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,83 +5,83 @@
|
|||
<group id="src/dotnet/commands/dotnet-build/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</source>
|
||||
<target state="new">Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</target>
|
||||
<note></note>
|
||||
<target state="translated">Construtor para a Plataforma .NET. Delega para o destino “Build” do MSBuild no arquivo de projeto.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Builder</source>
|
||||
<target state="new">.NET Builder</target>
|
||||
<note></note>
|
||||
<target state="translated">Construtor do .NET</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ConfigurationOptionDescription">
|
||||
<source>Configuration under which to build</source>
|
||||
<target state="new">Configuration under which to build</target>
|
||||
<note></note>
|
||||
<target state="translated">Configuração sob a qual compilar</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ConfigurationOptionName">
|
||||
<source>CONFIGURATION</source>
|
||||
<target state="new">CONFIGURATION</target>
|
||||
<note></note>
|
||||
<target state="translated">CONFIGURAÇÃO</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="FrameworkOptionDescription">
|
||||
<source>Compile a specific framework</source>
|
||||
<target state="new">Compile a specific framework</target>
|
||||
<note></note>
|
||||
<target state="translated">Compilar uma estrutura específica</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="FrameworkOptionName">
|
||||
<source>FRAMEWORK</source>
|
||||
<target state="new">FRAMEWORK</target>
|
||||
<note></note>
|
||||
<target state="translated">ESTRUTURA</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NoDependenciesOptionDescription">
|
||||
<source>Set this flag to ignore project to project references and only build the root project</source>
|
||||
<target state="new">Set this flag to ignore project to project references and only build the root project</target>
|
||||
<note></note>
|
||||
<target state="translated">Definir esse sinalizador para ignorar referências de projeto para projeto e compilar apenas o projeto raiz</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NoIncrementialOptionDescription">
|
||||
<source>Set this flag to turn off incremental build</source>
|
||||
<target state="new">Set this flag to turn off incremental build</target>
|
||||
<note></note>
|
||||
<target state="translated">Definir esse sinalizador para desligar o build incremental</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="OutputOptionDescription">
|
||||
<source>Directory in which to place outputs</source>
|
||||
<target state="new">Directory in which to place outputs</target>
|
||||
<note></note>
|
||||
<target state="translated">Diretório no qual colocar as saídas</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="OutputOptionName">
|
||||
<source>OUTPUT_DIR</source>
|
||||
<target state="new">OUTPUT_DIR</target>
|
||||
<note></note>
|
||||
<target state="translated">DIRETÓRIO_DE_SAÍDA</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectArgumentDescription">
|
||||
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
|
||||
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
|
||||
<note></note>
|
||||
<target state="translated">O arquivo de projeto do MSBuild para compilar. Se não houver arquivo de projeto especificado, o MSBuild pesquisará no diretório de trabalho atual um arquivo que contenha uma extensão de arquivo que termine em "proj" e usará esse arquivo.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectArgumentValueName">
|
||||
<source>PROJECT</source>
|
||||
<target state="new">PROJECT</target>
|
||||
<note></note>
|
||||
<target state="translated">PROJETO</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RuntimeOptionDescription">
|
||||
<source>Target runtime to build for. The default is to build a portable application.</source>
|
||||
<target state="new">Target runtime to build for. The default is to build a portable application.</target>
|
||||
<note></note>
|
||||
<target state="translated">Tempo de execução de destino para o qual compilar. O padrão é compilar um aplicativo portátil.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RuntimeOptionName">
|
||||
<source>RUNTIME_IDENTIFIER</source>
|
||||
<target state="new">RUNTIME_IDENTIFIER</target>
|
||||
<note></note>
|
||||
<target state="translated">RUNTIME_IDENTIFIER</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VersionSuffixOptionDescription">
|
||||
<source>Defines the value for the $(VersionSuffix) property in the project</source>
|
||||
<target state="new">Defines the value for the $(VersionSuffix) property in the project</target>
|
||||
<note></note>
|
||||
<target state="translated">Define o valor da propriedade $(VersionSuffix) no projeto</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VersionSuffixOptionName">
|
||||
<source>VERSION_SUFFIX</source>
|
||||
<target state="new">VERSION_SUFFIX</target>
|
||||
<note></note>
|
||||
<target state="translated">SUFIXO_DA_VERSÃO</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,83 +5,83 @@
|
|||
<group id="src/dotnet/commands/dotnet-build/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</source>
|
||||
<target state="new">Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</target>
|
||||
<note></note>
|
||||
<target state="translated">Построитель для платформы .NET Делегирование в цель "Сборка" MSBuild в файле проекта.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Builder</source>
|
||||
<target state="new">.NET Builder</target>
|
||||
<note></note>
|
||||
<target state="translated">Построитель .NET</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ConfigurationOptionDescription">
|
||||
<source>Configuration under which to build</source>
|
||||
<target state="new">Configuration under which to build</target>
|
||||
<note></note>
|
||||
<target state="translated">Конфигурация, в которой выполняется сборка</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ConfigurationOptionName">
|
||||
<source>CONFIGURATION</source>
|
||||
<target state="new">CONFIGURATION</target>
|
||||
<note></note>
|
||||
<target state="translated">CONFIGURATION</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="FrameworkOptionDescription">
|
||||
<source>Compile a specific framework</source>
|
||||
<target state="new">Compile a specific framework</target>
|
||||
<note></note>
|
||||
<target state="translated">Компиляция определенной платформы</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="FrameworkOptionName">
|
||||
<source>FRAMEWORK</source>
|
||||
<target state="new">FRAMEWORK</target>
|
||||
<note></note>
|
||||
<target state="translated">FRAMEWORK</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NoDependenciesOptionDescription">
|
||||
<source>Set this flag to ignore project to project references and only build the root project</source>
|
||||
<target state="new">Set this flag to ignore project to project references and only build the root project</target>
|
||||
<note></note>
|
||||
<target state="translated">Задайте этот флаг, чтобы пропускать ссылки проектов на проекты и выполнять сборку только корневого проекта.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NoIncrementialOptionDescription">
|
||||
<source>Set this flag to turn off incremental build</source>
|
||||
<target state="new">Set this flag to turn off incremental build</target>
|
||||
<note></note>
|
||||
<target state="translated">Задайте этот флаг, чтобы отключить добавочные сборки.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="OutputOptionDescription">
|
||||
<source>Directory in which to place outputs</source>
|
||||
<target state="new">Directory in which to place outputs</target>
|
||||
<note></note>
|
||||
<target state="translated">Каталог для размещения выходных данных</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="OutputOptionName">
|
||||
<source>OUTPUT_DIR</source>
|
||||
<target state="new">OUTPUT_DIR</target>
|
||||
<note></note>
|
||||
<target state="translated">OUTPUT_DIR</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectArgumentDescription">
|
||||
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
|
||||
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
|
||||
<note></note>
|
||||
<target state="translated">Файл проекта MSBuild для сборки. Если файл проекта не указан, MSBuild выполняет в текущем рабочем каталоге поиск файла с расширением, оканчивающимся на PROJ, и использует этот файл.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectArgumentValueName">
|
||||
<source>PROJECT</source>
|
||||
<target state="new">PROJECT</target>
|
||||
<note></note>
|
||||
<target state="translated">PROJECT</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RuntimeOptionDescription">
|
||||
<source>Target runtime to build for. The default is to build a portable application.</source>
|
||||
<target state="new">Target runtime to build for. The default is to build a portable application.</target>
|
||||
<note></note>
|
||||
<target state="translated">Целевая среда выполнения для сборки. По умолчанию выполняется сборка переносимого приложения.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RuntimeOptionName">
|
||||
<source>RUNTIME_IDENTIFIER</source>
|
||||
<target state="new">RUNTIME_IDENTIFIER</target>
|
||||
<note></note>
|
||||
<target state="translated">RUNTIME_IDENTIFIER</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VersionSuffixOptionDescription">
|
||||
<source>Defines the value for the $(VersionSuffix) property in the project</source>
|
||||
<target state="new">Defines the value for the $(VersionSuffix) property in the project</target>
|
||||
<note></note>
|
||||
<target state="translated">Определяет значение для свойства $(VersionSuffix) в проекте</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VersionSuffixOptionName">
|
||||
<source>VERSION_SUFFIX</source>
|
||||
<target state="new">VERSION_SUFFIX</target>
|
||||
<note></note>
|
||||
<target state="translated">VERSION_SUFFIX</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,83 +5,83 @@
|
|||
<group id="src/dotnet/commands/dotnet-build/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</source>
|
||||
<target state="new">Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</target>
|
||||
<note></note>
|
||||
<target state="translated">.NET Platformu için oluşturucu. Proje dosyasındaki MSBuild 'Build' hedefine temsilci atar.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Builder</source>
|
||||
<target state="new">.NET Builder</target>
|
||||
<note></note>
|
||||
<target state="translated">.NET Oluşturucusu</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ConfigurationOptionDescription">
|
||||
<source>Configuration under which to build</source>
|
||||
<target state="new">Configuration under which to build</target>
|
||||
<note></note>
|
||||
<target state="translated">Derlemenin gerçekleştirileceği yapılandırma</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ConfigurationOptionName">
|
||||
<source>CONFIGURATION</source>
|
||||
<target state="new">CONFIGURATION</target>
|
||||
<note></note>
|
||||
<target state="translated">YAPILANDIRMA</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="FrameworkOptionDescription">
|
||||
<source>Compile a specific framework</source>
|
||||
<target state="new">Compile a specific framework</target>
|
||||
<note></note>
|
||||
<target state="translated">Belirli bir çerçeveyi derler</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="FrameworkOptionName">
|
||||
<source>FRAMEWORK</source>
|
||||
<target state="new">FRAMEWORK</target>
|
||||
<note></note>
|
||||
<target state="translated">ÇERÇEVE</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NoDependenciesOptionDescription">
|
||||
<source>Set this flag to ignore project to project references and only build the root project</source>
|
||||
<target state="new">Set this flag to ignore project to project references and only build the root project</target>
|
||||
<note></note>
|
||||
<target state="translated">Projeden projeye başvuruları yoksaymak ve yalnızca kök projeyi derlemek için bu bayrağı ayarlayın</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NoIncrementialOptionDescription">
|
||||
<source>Set this flag to turn off incremental build</source>
|
||||
<target state="new">Set this flag to turn off incremental build</target>
|
||||
<note></note>
|
||||
<target state="translated">Artımlı derlemeyi kapatmak için bu bayrağı ayarlayın</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="OutputOptionDescription">
|
||||
<source>Directory in which to place outputs</source>
|
||||
<target state="new">Directory in which to place outputs</target>
|
||||
<note></note>
|
||||
<target state="translated">Çıkışların yerleştirileceği dizin</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="OutputOptionName">
|
||||
<source>OUTPUT_DIR</source>
|
||||
<target state="new">OUTPUT_DIR</target>
|
||||
<note></note>
|
||||
<target state="translated">ÇIKIŞ_DİZİNİ</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectArgumentDescription">
|
||||
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
|
||||
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
|
||||
<note></note>
|
||||
<target state="translated">Derlenecek MSBuild proje dosyası. Bir proje dosyası belirtilmezse MSBuild, geçerli çalışma dizininde dosya uzantısının sonu ‘proj’ olan bir dosyası arar ve bu dosyayı kullanır.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectArgumentValueName">
|
||||
<source>PROJECT</source>
|
||||
<target state="new">PROJECT</target>
|
||||
<note></note>
|
||||
<target state="translated">PROJE</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RuntimeOptionDescription">
|
||||
<source>Target runtime to build for. The default is to build a portable application.</source>
|
||||
<target state="new">Target runtime to build for. The default is to build a portable application.</target>
|
||||
<note></note>
|
||||
<target state="translated">Derlemenin yapılacağı hedef çalışma zamanı. Varsayılan değer, taşınabilir bir uygulama derlenmesidir.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RuntimeOptionName">
|
||||
<source>RUNTIME_IDENTIFIER</source>
|
||||
<target state="new">RUNTIME_IDENTIFIER</target>
|
||||
<note></note>
|
||||
<target state="translated">ÇALIŞMA_ZAMANI_TANIMLAYICISI</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VersionSuffixOptionDescription">
|
||||
<source>Defines the value for the $(VersionSuffix) property in the project</source>
|
||||
<target state="new">Defines the value for the $(VersionSuffix) property in the project</target>
|
||||
<note></note>
|
||||
<target state="translated">Projedeki $(VersionSuffix) özelliğinin değerini tanımlar</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VersionSuffixOptionName">
|
||||
<source>VERSION_SUFFIX</source>
|
||||
<target state="new">VERSION_SUFFIX</target>
|
||||
<note></note>
|
||||
<target state="translated">SÜRÜM_SONEKİ</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,67 +5,67 @@
|
|||
<group id="src/dotnet/commands/dotnet-build/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Builder</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ConfigurationOptionDescription">
|
||||
<source>Configuration under which to build</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ConfigurationOptionName">
|
||||
<source>CONFIGURATION</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="FrameworkOptionDescription">
|
||||
<source>Compile a specific framework</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="FrameworkOptionName">
|
||||
<source>FRAMEWORK</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NoDependenciesOptionDescription">
|
||||
<source>Set this flag to ignore project to project references and only build the root project</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NoIncrementialOptionDescription">
|
||||
<source>Set this flag to turn off incremental build</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="OutputOptionDescription">
|
||||
<source>Directory in which to place outputs</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="OutputOptionName">
|
||||
<source>OUTPUT_DIR</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectArgumentDescription">
|
||||
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectArgumentValueName">
|
||||
<source>PROJECT</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RuntimeOptionDescription">
|
||||
<source>Target runtime to build for. The default is to build a portable application.</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RuntimeOptionName">
|
||||
<source>RUNTIME_IDENTIFIER</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VersionSuffixOptionDescription">
|
||||
<source>Defines the value for the $(VersionSuffix) property in the project</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VersionSuffixOptionName">
|
||||
<source>VERSION_SUFFIX</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,83 +5,83 @@
|
|||
<group id="src/dotnet/commands/dotnet-build/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</source>
|
||||
<target state="new">Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</target>
|
||||
<note></note>
|
||||
<target state="translated">适用于.NET 平台的生成器。委托项目文件中 MSBuild“生成”目标。</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Builder</source>
|
||||
<target state="new">.NET Builder</target>
|
||||
<note></note>
|
||||
<target state="translated">.NET 生成器</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ConfigurationOptionDescription">
|
||||
<source>Configuration under which to build</source>
|
||||
<target state="new">Configuration under which to build</target>
|
||||
<note></note>
|
||||
<target state="translated">在何处生成配置</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ConfigurationOptionName">
|
||||
<source>CONFIGURATION</source>
|
||||
<target state="new">CONFIGURATION</target>
|
||||
<note></note>
|
||||
<target state="translated">CONFIGURATION</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="FrameworkOptionDescription">
|
||||
<source>Compile a specific framework</source>
|
||||
<target state="new">Compile a specific framework</target>
|
||||
<note></note>
|
||||
<target state="translated">编译特定的框架</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="FrameworkOptionName">
|
||||
<source>FRAMEWORK</source>
|
||||
<target state="new">FRAMEWORK</target>
|
||||
<note></note>
|
||||
<target state="translated">FRAMEWORK</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NoDependenciesOptionDescription">
|
||||
<source>Set this flag to ignore project to project references and only build the root project</source>
|
||||
<target state="new">Set this flag to ignore project to project references and only build the root project</target>
|
||||
<note></note>
|
||||
<target state="translated">设置此标志以忽略项目到项目引用,并仅生成根项目。</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NoIncrementialOptionDescription">
|
||||
<source>Set this flag to turn off incremental build</source>
|
||||
<target state="new">Set this flag to turn off incremental build</target>
|
||||
<note></note>
|
||||
<target state="translated">设置此标志以关闭增量生成</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="OutputOptionDescription">
|
||||
<source>Directory in which to place outputs</source>
|
||||
<target state="new">Directory in which to place outputs</target>
|
||||
<note></note>
|
||||
<target state="translated">用于放置输出的目录</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="OutputOptionName">
|
||||
<source>OUTPUT_DIR</source>
|
||||
<target state="new">OUTPUT_DIR</target>
|
||||
<note></note>
|
||||
<target state="translated">OUTPUT_DIR</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectArgumentDescription">
|
||||
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
|
||||
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
|
||||
<note></note>
|
||||
<target state="translated">要生成的 MSBuild 项目文件。如果未指定项目文件,MSBuild 将搜索当前工作目录来查找文件扩展名以“proj”结尾的文件并使用该文件。</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectArgumentValueName">
|
||||
<source>PROJECT</source>
|
||||
<target state="new">PROJECT</target>
|
||||
<note></note>
|
||||
<target state="translated">PROJECT</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RuntimeOptionDescription">
|
||||
<source>Target runtime to build for. The default is to build a portable application.</source>
|
||||
<target state="new">Target runtime to build for. The default is to build a portable application.</target>
|
||||
<note></note>
|
||||
<target state="translated">要生成的目标运行时。默认生成可移植的应用程序。</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RuntimeOptionName">
|
||||
<source>RUNTIME_IDENTIFIER</source>
|
||||
<target state="new">RUNTIME_IDENTIFIER</target>
|
||||
<note></note>
|
||||
<target state="translated">RUNTIME_IDENTIFIER</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VersionSuffixOptionDescription">
|
||||
<source>Defines the value for the $(VersionSuffix) property in the project</source>
|
||||
<target state="new">Defines the value for the $(VersionSuffix) property in the project</target>
|
||||
<note></note>
|
||||
<target state="translated">定义项目中 $(VersionSuffix)属性的值</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VersionSuffixOptionName">
|
||||
<source>VERSION_SUFFIX</source>
|
||||
<target state="new">VERSION_SUFFIX</target>
|
||||
<note></note>
|
||||
<target state="translated">VERSION_SUFFIX</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,83 +5,83 @@
|
|||
<group id="src/dotnet/commands/dotnet-build/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</source>
|
||||
<target state="new">Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</target>
|
||||
<note></note>
|
||||
<target state="translated">適用於 .NET 平台的產生器。委派給專案檔中的 MSBuild 'Build' 目標。</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Builder</source>
|
||||
<target state="new">.NET Builder</target>
|
||||
<note></note>
|
||||
<target state="translated">.NET 產生器</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ConfigurationOptionDescription">
|
||||
<source>Configuration under which to build</source>
|
||||
<target state="new">Configuration under which to build</target>
|
||||
<note></note>
|
||||
<target state="translated">作為建置依據的組態</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ConfigurationOptionName">
|
||||
<source>CONFIGURATION</source>
|
||||
<target state="new">CONFIGURATION</target>
|
||||
<note></note>
|
||||
<target state="translated">組態</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="FrameworkOptionDescription">
|
||||
<source>Compile a specific framework</source>
|
||||
<target state="new">Compile a specific framework</target>
|
||||
<note></note>
|
||||
<target state="translated">編譯特定架構</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="FrameworkOptionName">
|
||||
<source>FRAMEWORK</source>
|
||||
<target state="new">FRAMEWORK</target>
|
||||
<note></note>
|
||||
<target state="translated">架構</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NoDependenciesOptionDescription">
|
||||
<source>Set this flag to ignore project to project references and only build the root project</source>
|
||||
<target state="new">Set this flag to ignore project to project references and only build the root project</target>
|
||||
<note></note>
|
||||
<target state="translated">將此旗標設定為略過專案對專案參考並僅建置根專案</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NoIncrementialOptionDescription">
|
||||
<source>Set this flag to turn off incremental build</source>
|
||||
<target state="new">Set this flag to turn off incremental build</target>
|
||||
<note></note>
|
||||
<target state="translated">將此旗標設定為關閉累加建置</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="OutputOptionDescription">
|
||||
<source>Directory in which to place outputs</source>
|
||||
<target state="new">Directory in which to place outputs</target>
|
||||
<note></note>
|
||||
<target state="translated">要放置輸出的目錄</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="OutputOptionName">
|
||||
<source>OUTPUT_DIR</source>
|
||||
<target state="new">OUTPUT_DIR</target>
|
||||
<note></note>
|
||||
<target state="translated">OUTPUT_DIR</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectArgumentDescription">
|
||||
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
|
||||
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
|
||||
<note></note>
|
||||
<target state="translated">要建置的 MSBuild 專案檔。若未指定專案檔,MSBuild 會在目前的工作目錄搜尋副檔名以 `proj` 結尾的檔案,並使用該檔案。</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectArgumentValueName">
|
||||
<source>PROJECT</source>
|
||||
<target state="new">PROJECT</target>
|
||||
<note></note>
|
||||
<target state="translated">專案</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RuntimeOptionDescription">
|
||||
<source>Target runtime to build for. The default is to build a portable application.</source>
|
||||
<target state="new">Target runtime to build for. The default is to build a portable application.</target>
|
||||
<note></note>
|
||||
<target state="translated">要為其建置的目標執行階段。預設為建置可攜式應用程式。</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RuntimeOptionName">
|
||||
<source>RUNTIME_IDENTIFIER</source>
|
||||
<target state="new">RUNTIME_IDENTIFIER</target>
|
||||
<note></note>
|
||||
<target state="translated">RUNTIME_IDENTIFIER</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VersionSuffixOptionDescription">
|
||||
<source>Defines the value for the $(VersionSuffix) property in the project</source>
|
||||
<target state="new">Defines the value for the $(VersionSuffix) property in the project</target>
|
||||
<note></note>
|
||||
<target state="translated">定義專案中 $(VersionSuffix) 屬性的值</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VersionSuffixOptionName">
|
||||
<source>VERSION_SUFFIX</source>
|
||||
<target state="new">VERSION_SUFFIX</target>
|
||||
<note></note>
|
||||
<target state="translated">VERSION_SUFFIX</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,53 +5,53 @@
|
|||
<group id="src/dotnet/commands/dotnet-clean/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Clean Command</source>
|
||||
<target state="new">.NET Clean Command</target>
|
||||
<note></note>
|
||||
<target state="translated">Příkaz rozhraní .NET pro vyčištění</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to clean previously generated build outputs.</source>
|
||||
<target state="new">Command to clean previously generated build outputs.</target>
|
||||
<note></note>
|
||||
<target state="translated">Příkaz slouží k vyčištění vygenerovaných výstupů buildů.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdArgProject">
|
||||
<source>PROJECT</source>
|
||||
<target state="new">PROJECT</target>
|
||||
<note></note>
|
||||
<target state="translated">PROJECT</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdArgProjDescription">
|
||||
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
|
||||
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
|
||||
<note></note>
|
||||
<target state="translated">Soubor projektu MSBuildu určený k sestavení. Pokud není zadaný soubor projektu, nástroj MSBuild vyhledá v aktuálním pracovním adresáři soubor s příponou, která končí na „proj“, a použije ho.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdOutputDir">
|
||||
<source>OUTPUT_DIR</source>
|
||||
<target state="new">OUTPUT_DIR</target>
|
||||
<note></note>
|
||||
<target state="translated">OUTPUT_DIR</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdOutputDirDescription">
|
||||
<source>Directory in which the build outputs have been placed</source>
|
||||
<target state="new">Directory in which the build outputs have been placed</target>
|
||||
<note></note>
|
||||
<target state="translated">Adresář, do kterého byly umístěny výstupy buildu.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFramework">
|
||||
<source>FRAMEWORK</source>
|
||||
<target state="new">FRAMEWORK</target>
|
||||
<note></note>
|
||||
<target state="translated">FRAMEWORK</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFrameworkDescription">
|
||||
<source>Clean a specific framework</source>
|
||||
<target state="new">Clean a specific framework</target>
|
||||
<note></note>
|
||||
<target state="translated">Umožňuje vyčistit určitou platformu.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdConfiguration">
|
||||
<source>CONFIGURATION</source>
|
||||
<target state="new">CONFIGURATION</target>
|
||||
<note></note>
|
||||
<target state="translated">CONFIGURATION</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdConfigurationDescription">
|
||||
<source>Clean a specific configuration</source>
|
||||
<target state="new">Clean a specific configuration</target>
|
||||
<note></note>
|
||||
<target state="translated">Umožňuje vyčistit určitou konfiguraci.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,53 +5,53 @@
|
|||
<group id="src/dotnet/commands/dotnet-clean/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Clean Command</source>
|
||||
<target state="new">.NET Clean Command</target>
|
||||
<note></note>
|
||||
<target state="translated">.NET-Befehl "Clean"</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to clean previously generated build outputs.</source>
|
||||
<target state="new">Command to clean previously generated build outputs.</target>
|
||||
<note></note>
|
||||
<target state="translated">Befehl zum Bereinigen zuvor generierter Buildausgaben.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdArgProject">
|
||||
<source>PROJECT</source>
|
||||
<target state="new">PROJECT</target>
|
||||
<note></note>
|
||||
<target state="translated">PROJECT</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdArgProjDescription">
|
||||
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
|
||||
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
|
||||
<note></note>
|
||||
<target state="translated">Die zu erstellende MSBuild-Projektdatei. Wenn keine Projektdatei angegeben ist, durchsucht MSBuild das aktuelle Arbeitsverzeichnis nach einer Datei mit einer Dateierweiterung, die auf "proj" endet, und verwendet diese Datei.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdOutputDir">
|
||||
<source>OUTPUT_DIR</source>
|
||||
<target state="new">OUTPUT_DIR</target>
|
||||
<note></note>
|
||||
<target state="translated">OUTPUT_DIR</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdOutputDirDescription">
|
||||
<source>Directory in which the build outputs have been placed</source>
|
||||
<target state="new">Directory in which the build outputs have been placed</target>
|
||||
<note></note>
|
||||
<target state="translated">Verzeichnis, in dem sich die Buildausgaben befinden</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFramework">
|
||||
<source>FRAMEWORK</source>
|
||||
<target state="new">FRAMEWORK</target>
|
||||
<note></note>
|
||||
<target state="translated">FRAMEWORK</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFrameworkDescription">
|
||||
<source>Clean a specific framework</source>
|
||||
<target state="new">Clean a specific framework</target>
|
||||
<note></note>
|
||||
<target state="translated">Bestimmtes Framework bereinigen</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdConfiguration">
|
||||
<source>CONFIGURATION</source>
|
||||
<target state="new">CONFIGURATION</target>
|
||||
<note></note>
|
||||
<target state="translated">CONFIGURATION</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdConfigurationDescription">
|
||||
<source>Clean a specific configuration</source>
|
||||
<target state="new">Clean a specific configuration</target>
|
||||
<note></note>
|
||||
<target state="translated">Bestimmte Konfiguration bereinigen</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,53 +5,53 @@
|
|||
<group id="src/dotnet/commands/dotnet-clean/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Clean Command</source>
|
||||
<target state="new">.NET Clean Command</target>
|
||||
<note></note>
|
||||
<target state="translated">Comando Clean de .NET</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to clean previously generated build outputs.</source>
|
||||
<target state="new">Command to clean previously generated build outputs.</target>
|
||||
<note></note>
|
||||
<target state="translated">Comando para limpiar los archivos de salida de compilaciones anteriores.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdArgProject">
|
||||
<source>PROJECT</source>
|
||||
<target state="new">PROJECT</target>
|
||||
<note></note>
|
||||
<target state="translated">PROYECTO</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdArgProjDescription">
|
||||
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
|
||||
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
|
||||
<note></note>
|
||||
<target state="translated">Archivo del proyecto de MSBuild para compilar. Si no se especifica un archivo del proyecto, MSBuild busca en el directorio de trabajo actual un archivo que tenga una extensión de archivo que acabe en “proj” y utiliza ese archivo.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdOutputDir">
|
||||
<source>OUTPUT_DIR</source>
|
||||
<target state="new">OUTPUT_DIR</target>
|
||||
<note></note>
|
||||
<target state="translated">DIRECTORIO_DE_SALIDA</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdOutputDirDescription">
|
||||
<source>Directory in which the build outputs have been placed</source>
|
||||
<target state="new">Directory in which the build outputs have been placed</target>
|
||||
<note></note>
|
||||
<target state="translated">Directorio donde se han puesto los archivos de salida de la compilación</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFramework">
|
||||
<source>FRAMEWORK</source>
|
||||
<target state="new">FRAMEWORK</target>
|
||||
<note></note>
|
||||
<target state="translated">PLATAFORMA</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFrameworkDescription">
|
||||
<source>Clean a specific framework</source>
|
||||
<target state="new">Clean a specific framework</target>
|
||||
<note></note>
|
||||
<target state="translated">Limpia una plataforma específica</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdConfiguration">
|
||||
<source>CONFIGURATION</source>
|
||||
<target state="new">CONFIGURATION</target>
|
||||
<note></note>
|
||||
<target state="translated">CONFIGURACIÓN</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdConfigurationDescription">
|
||||
<source>Clean a specific configuration</source>
|
||||
<target state="new">Clean a specific configuration</target>
|
||||
<note></note>
|
||||
<target state="translated">Limpia una configuración específica</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,53 +5,53 @@
|
|||
<group id="src/dotnet/commands/dotnet-clean/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Clean Command</source>
|
||||
<target state="new">.NET Clean Command</target>
|
||||
<note></note>
|
||||
<target state="translated">Commande de nettoyage .NET</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to clean previously generated build outputs.</source>
|
||||
<target state="new">Command to clean previously generated build outputs.</target>
|
||||
<note></note>
|
||||
<target state="translated">Commande de nettoyage des sorties de build générées précédemment.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdArgProject">
|
||||
<source>PROJECT</source>
|
||||
<target state="new">PROJECT</target>
|
||||
<note></note>
|
||||
<target state="translated">PROJET</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdArgProjDescription">
|
||||
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
|
||||
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
|
||||
<note></note>
|
||||
<target state="translated">Fichier projet MSBuild à générer. Si aucun fichier projet n'est spécifié, MSBuild recherche dans le répertoire de travail actif un fichier dont l'extension se termine par 'proj' et utilise ce dernier.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdOutputDir">
|
||||
<source>OUTPUT_DIR</source>
|
||||
<target state="new">OUTPUT_DIR</target>
|
||||
<note></note>
|
||||
<target state="translated">RÉP_SORTIE</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdOutputDirDescription">
|
||||
<source>Directory in which the build outputs have been placed</source>
|
||||
<target state="new">Directory in which the build outputs have been placed</target>
|
||||
<note></note>
|
||||
<target state="translated">Répertoire dans lequel les sorties de build ont été placées</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFramework">
|
||||
<source>FRAMEWORK</source>
|
||||
<target state="new">FRAMEWORK</target>
|
||||
<note></note>
|
||||
<target state="translated">FRAMEWORK</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFrameworkDescription">
|
||||
<source>Clean a specific framework</source>
|
||||
<target state="new">Clean a specific framework</target>
|
||||
<note></note>
|
||||
<target state="translated">Nettoyer un framework spécifique</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdConfiguration">
|
||||
<source>CONFIGURATION</source>
|
||||
<target state="new">CONFIGURATION</target>
|
||||
<note></note>
|
||||
<target state="translated">CONFIGURATION</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdConfigurationDescription">
|
||||
<source>Clean a specific configuration</source>
|
||||
<target state="new">Clean a specific configuration</target>
|
||||
<note></note>
|
||||
<target state="translated">Nettoyer une configuration spécifique</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,53 +5,53 @@
|
|||
<group id="src/dotnet/commands/dotnet-clean/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Clean Command</source>
|
||||
<target state="new">.NET Clean Command</target>
|
||||
<note></note>
|
||||
<target state="translated">Comando Pulisci .NET</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to clean previously generated build outputs.</source>
|
||||
<target state="new">Command to clean previously generated build outputs.</target>
|
||||
<note></note>
|
||||
<target state="translated">Comando per pulire gli output di compilazione generati in precedenza.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdArgProject">
|
||||
<source>PROJECT</source>
|
||||
<target state="new">PROJECT</target>
|
||||
<note></note>
|
||||
<target state="translated">PROGETTO</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdArgProjDescription">
|
||||
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
|
||||
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
|
||||
<note></note>
|
||||
<target state="translated">File di progetto MSBuild da compilare. Se non si specifica un file di progetto, MSBuild cerca nella directory di lavoro corrente un file la cui estensione termina con `proj` e usa tale file.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdOutputDir">
|
||||
<source>OUTPUT_DIR</source>
|
||||
<target state="new">OUTPUT_DIR</target>
|
||||
<note></note>
|
||||
<target state="translated">DIR_OUTPUT</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdOutputDirDescription">
|
||||
<source>Directory in which the build outputs have been placed</source>
|
||||
<target state="new">Directory in which the build outputs have been placed</target>
|
||||
<note></note>
|
||||
<target state="translated">Directory in cui sono stati inseriti gli output di compilazione</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFramework">
|
||||
<source>FRAMEWORK</source>
|
||||
<target state="new">FRAMEWORK</target>
|
||||
<note></note>
|
||||
<target state="translated">FRAMEWORK</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFrameworkDescription">
|
||||
<source>Clean a specific framework</source>
|
||||
<target state="new">Clean a specific framework</target>
|
||||
<note></note>
|
||||
<target state="translated">Pulisce un framework specifico</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdConfiguration">
|
||||
<source>CONFIGURATION</source>
|
||||
<target state="new">CONFIGURATION</target>
|
||||
<note></note>
|
||||
<target state="translated">CONFIGURAZIONE</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdConfigurationDescription">
|
||||
<source>Clean a specific configuration</source>
|
||||
<target state="new">Clean a specific configuration</target>
|
||||
<note></note>
|
||||
<target state="translated">Pulisce una configurazione specifica</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,53 +5,53 @@
|
|||
<group id="src/dotnet/commands/dotnet-clean/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Clean Command</source>
|
||||
<target state="new">.NET Clean Command</target>
|
||||
<note></note>
|
||||
<target state="translated">.NET Clean コマンド</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to clean previously generated build outputs.</source>
|
||||
<target state="new">Command to clean previously generated build outputs.</target>
|
||||
<note></note>
|
||||
<target state="translated">以前に生成されたビルド出力を消去するコマンド。</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdArgProject">
|
||||
<source>PROJECT</source>
|
||||
<target state="new">PROJECT</target>
|
||||
<note></note>
|
||||
<target state="translated">PROJECT</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdArgProjDescription">
|
||||
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
|
||||
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
|
||||
<note></note>
|
||||
<target state="translated">構築する MSBuild プロジェクト ファイル。プロジェクト ファイルを指定しなかった場合、MSBuild は現在の作業ディレクトリの中から "proj" で終わるファイル拡張子を検索し、そのファイルを使用します。</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdOutputDir">
|
||||
<source>OUTPUT_DIR</source>
|
||||
<target state="new">OUTPUT_DIR</target>
|
||||
<note></note>
|
||||
<target state="translated">OUTPUT_DIR</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdOutputDirDescription">
|
||||
<source>Directory in which the build outputs have been placed</source>
|
||||
<target state="new">Directory in which the build outputs have been placed</target>
|
||||
<note></note>
|
||||
<target state="translated">ビルド出力が配置されているディレクトリ</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFramework">
|
||||
<source>FRAMEWORK</source>
|
||||
<target state="new">FRAMEWORK</target>
|
||||
<note></note>
|
||||
<target state="translated">FRAMEWORK</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFrameworkDescription">
|
||||
<source>Clean a specific framework</source>
|
||||
<target state="new">Clean a specific framework</target>
|
||||
<note></note>
|
||||
<target state="translated">特定のフレームワークを消去する</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdConfiguration">
|
||||
<source>CONFIGURATION</source>
|
||||
<target state="new">CONFIGURATION</target>
|
||||
<note></note>
|
||||
<target state="translated">CONFIGURATION</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdConfigurationDescription">
|
||||
<source>Clean a specific configuration</source>
|
||||
<target state="new">Clean a specific configuration</target>
|
||||
<note></note>
|
||||
<target state="translated">特定の構成を消去する</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,53 +5,53 @@
|
|||
<group id="src/dotnet/commands/dotnet-clean/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Clean Command</source>
|
||||
<target state="new">.NET Clean Command</target>
|
||||
<note></note>
|
||||
<target state="translated">.NET 정리 명령</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to clean previously generated build outputs.</source>
|
||||
<target state="new">Command to clean previously generated build outputs.</target>
|
||||
<note></note>
|
||||
<target state="translated">이전에 생성된 빌드 출력을 정리하는 명령입니다.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdArgProject">
|
||||
<source>PROJECT</source>
|
||||
<target state="new">PROJECT</target>
|
||||
<note></note>
|
||||
<target state="translated">PROJECT</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdArgProjDescription">
|
||||
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
|
||||
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
|
||||
<note></note>
|
||||
<target state="translated">빌드할 MSBuild 프로젝트 파일입니다. 프로젝트 파일을 지정하지 않으면 MSBuild는 현재 작업 디렉터리에서 파일 확장명이 ‘proj’로 끝나는 파일을 찾아서 사용합니다.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdOutputDir">
|
||||
<source>OUTPUT_DIR</source>
|
||||
<target state="new">OUTPUT_DIR</target>
|
||||
<note></note>
|
||||
<target state="translated">OUTPUT_DIR</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdOutputDirDescription">
|
||||
<source>Directory in which the build outputs have been placed</source>
|
||||
<target state="new">Directory in which the build outputs have been placed</target>
|
||||
<note></note>
|
||||
<target state="translated">빌드 출력이 배치된 디렉터리입니다.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFramework">
|
||||
<source>FRAMEWORK</source>
|
||||
<target state="new">FRAMEWORK</target>
|
||||
<note></note>
|
||||
<target state="translated">FRAMEWORK</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFrameworkDescription">
|
||||
<source>Clean a specific framework</source>
|
||||
<target state="new">Clean a specific framework</target>
|
||||
<note></note>
|
||||
<target state="translated">특정 프레임워크를 정리합니다.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdConfiguration">
|
||||
<source>CONFIGURATION</source>
|
||||
<target state="new">CONFIGURATION</target>
|
||||
<note></note>
|
||||
<target state="translated">CONFIGURATION</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdConfigurationDescription">
|
||||
<source>Clean a specific configuration</source>
|
||||
<target state="new">Clean a specific configuration</target>
|
||||
<note></note>
|
||||
<target state="translated">특정 구성을 정리합니다.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,53 +5,53 @@
|
|||
<group id="src/dotnet/commands/dotnet-clean/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Clean Command</source>
|
||||
<target state="new">.NET Clean Command</target>
|
||||
<note></note>
|
||||
<target state="translated">Polecenie clean platformy .NET</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to clean previously generated build outputs.</source>
|
||||
<target state="new">Command to clean previously generated build outputs.</target>
|
||||
<note></note>
|
||||
<target state="translated">Polecenie służące do czyszczenia wcześniej wygenerowanych danych wyjściowych kompilacji.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdArgProject">
|
||||
<source>PROJECT</source>
|
||||
<target state="new">PROJECT</target>
|
||||
<note></note>
|
||||
<target state="translated">PROJEKT</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdArgProjDescription">
|
||||
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
|
||||
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
|
||||
<note></note>
|
||||
<target state="translated">Plik projektu programu MSBuild do skompilowania. Jeśli nie określono pliku projektu, program MSBuild wyszukuje w bieżącym katalogu roboczym plik, którego rozszerzenie kończy się na „proj”, i używa tego pliku.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdOutputDir">
|
||||
<source>OUTPUT_DIR</source>
|
||||
<target state="new">OUTPUT_DIR</target>
|
||||
<note></note>
|
||||
<target state="translated">KATALOG_WYJŚCIOWY</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdOutputDirDescription">
|
||||
<source>Directory in which the build outputs have been placed</source>
|
||||
<target state="new">Directory in which the build outputs have been placed</target>
|
||||
<note></note>
|
||||
<target state="translated">Katalog, w którym zostały umieszczone dane wyjściowe kompilacji</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFramework">
|
||||
<source>FRAMEWORK</source>
|
||||
<target state="new">FRAMEWORK</target>
|
||||
<note></note>
|
||||
<target state="translated">PLATFORMA</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFrameworkDescription">
|
||||
<source>Clean a specific framework</source>
|
||||
<target state="new">Clean a specific framework</target>
|
||||
<note></note>
|
||||
<target state="translated">Wyczyść określoną platformę</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdConfiguration">
|
||||
<source>CONFIGURATION</source>
|
||||
<target state="new">CONFIGURATION</target>
|
||||
<note></note>
|
||||
<target state="translated">KONFIGURACJA</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdConfigurationDescription">
|
||||
<source>Clean a specific configuration</source>
|
||||
<target state="new">Clean a specific configuration</target>
|
||||
<note></note>
|
||||
<target state="translated">Wyczyść określoną konfigurację</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,53 +5,53 @@
|
|||
<group id="src/dotnet/commands/dotnet-clean/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Clean Command</source>
|
||||
<target state="new">.NET Clean Command</target>
|
||||
<note></note>
|
||||
<target state="translated">Comando Clean do .NET</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to clean previously generated build outputs.</source>
|
||||
<target state="new">Command to clean previously generated build outputs.</target>
|
||||
<note></note>
|
||||
<target state="translated">Comando para limpar saídas de build geradas anteriormente.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdArgProject">
|
||||
<source>PROJECT</source>
|
||||
<target state="new">PROJECT</target>
|
||||
<note></note>
|
||||
<target state="translated">PROJETO</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdArgProjDescription">
|
||||
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
|
||||
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
|
||||
<note></note>
|
||||
<target state="translated">O arquivo de projeto do MSBuild para compilar. Se não houver arquivo de projeto especificado, o MSBuild pesquisará no diretório de trabalho atual um arquivo que contenha uma extensão de arquivo que termine em "proj" e usará esse arquivo.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdOutputDir">
|
||||
<source>OUTPUT_DIR</source>
|
||||
<target state="new">OUTPUT_DIR</target>
|
||||
<note></note>
|
||||
<target state="translated">DIRETÓRIO_DE_SAÍDA</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdOutputDirDescription">
|
||||
<source>Directory in which the build outputs have been placed</source>
|
||||
<target state="new">Directory in which the build outputs have been placed</target>
|
||||
<note></note>
|
||||
<target state="translated">O diretório no qual as saídas de build foram colocadas</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFramework">
|
||||
<source>FRAMEWORK</source>
|
||||
<target state="new">FRAMEWORK</target>
|
||||
<note></note>
|
||||
<target state="translated">ESTRUTURA</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFrameworkDescription">
|
||||
<source>Clean a specific framework</source>
|
||||
<target state="new">Clean a specific framework</target>
|
||||
<note></note>
|
||||
<target state="translated">Limpar uma estrutura específica</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdConfiguration">
|
||||
<source>CONFIGURATION</source>
|
||||
<target state="new">CONFIGURATION</target>
|
||||
<note></note>
|
||||
<target state="translated">CONFIGURAÇÃO</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdConfigurationDescription">
|
||||
<source>Clean a specific configuration</source>
|
||||
<target state="new">Clean a specific configuration</target>
|
||||
<note></note>
|
||||
<target state="translated">Limpar uma configuração específica</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,53 +5,53 @@
|
|||
<group id="src/dotnet/commands/dotnet-clean/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Clean Command</source>
|
||||
<target state="new">.NET Clean Command</target>
|
||||
<note></note>
|
||||
<target state="translated">Команда .NET "Очистить"</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to clean previously generated build outputs.</source>
|
||||
<target state="new">Command to clean previously generated build outputs.</target>
|
||||
<note></note>
|
||||
<target state="translated">Команда для очистки ранее созданных выходных данных сборки.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdArgProject">
|
||||
<source>PROJECT</source>
|
||||
<target state="new">PROJECT</target>
|
||||
<note></note>
|
||||
<target state="translated">PROJECT</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdArgProjDescription">
|
||||
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
|
||||
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
|
||||
<note></note>
|
||||
<target state="translated">Файл проекта MSBuild для сборки. Если файл проекта не указан, MSBuild выполняет в текущем рабочем каталоге поиск файла с расширением, оканчивающимся на PROJ, и использует этот файл.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdOutputDir">
|
||||
<source>OUTPUT_DIR</source>
|
||||
<target state="new">OUTPUT_DIR</target>
|
||||
<note></note>
|
||||
<target state="translated">OUTPUT_DIR</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdOutputDirDescription">
|
||||
<source>Directory in which the build outputs have been placed</source>
|
||||
<target state="new">Directory in which the build outputs have been placed</target>
|
||||
<note></note>
|
||||
<target state="translated">Каталог, в котором размещаются выходные данные сборки.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFramework">
|
||||
<source>FRAMEWORK</source>
|
||||
<target state="new">FRAMEWORK</target>
|
||||
<note></note>
|
||||
<target state="translated">FRAMEWORK</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFrameworkDescription">
|
||||
<source>Clean a specific framework</source>
|
||||
<target state="new">Clean a specific framework</target>
|
||||
<note></note>
|
||||
<target state="translated">Очистка определенной платформы</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdConfiguration">
|
||||
<source>CONFIGURATION</source>
|
||||
<target state="new">CONFIGURATION</target>
|
||||
<note></note>
|
||||
<target state="translated">CONFIGURATION</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdConfigurationDescription">
|
||||
<source>Clean a specific configuration</source>
|
||||
<target state="new">Clean a specific configuration</target>
|
||||
<note></note>
|
||||
<target state="translated">Очистка определенной конфигурации</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,53 +5,53 @@
|
|||
<group id="src/dotnet/commands/dotnet-clean/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Clean Command</source>
|
||||
<target state="new">.NET Clean Command</target>
|
||||
<note></note>
|
||||
<target state="translated">.NET Clean Komutu</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to clean previously generated build outputs.</source>
|
||||
<target state="new">Command to clean previously generated build outputs.</target>
|
||||
<note></note>
|
||||
<target state="translated">Daha önce oluşturulan derleme çıkışlarını temizleme komutu.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdArgProject">
|
||||
<source>PROJECT</source>
|
||||
<target state="new">PROJECT</target>
|
||||
<note></note>
|
||||
<target state="translated">PROJE</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdArgProjDescription">
|
||||
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
|
||||
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
|
||||
<note></note>
|
||||
<target state="translated">Derlenecek MSBuild proje dosyası. Bir proje dosyası belirtilmezse MSBuild, geçerli çalışma dizininde dosya uzantısının sonu ‘proj’ olan bir dosyası arar ve bu dosyayı kullanır.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdOutputDir">
|
||||
<source>OUTPUT_DIR</source>
|
||||
<target state="new">OUTPUT_DIR</target>
|
||||
<note></note>
|
||||
<target state="translated">ÇIKIŞ_DİZİNİ</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdOutputDirDescription">
|
||||
<source>Directory in which the build outputs have been placed</source>
|
||||
<target state="new">Directory in which the build outputs have been placed</target>
|
||||
<note></note>
|
||||
<target state="translated">Derleme çıktılarının yerleştirildiği dizin</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFramework">
|
||||
<source>FRAMEWORK</source>
|
||||
<target state="new">FRAMEWORK</target>
|
||||
<note></note>
|
||||
<target state="translated">ÇERÇEVE</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFrameworkDescription">
|
||||
<source>Clean a specific framework</source>
|
||||
<target state="new">Clean a specific framework</target>
|
||||
<note></note>
|
||||
<target state="translated">Belirli bir çerçeveyi temizler</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdConfiguration">
|
||||
<source>CONFIGURATION</source>
|
||||
<target state="new">CONFIGURATION</target>
|
||||
<note></note>
|
||||
<target state="translated">YAPILANDIRMA</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdConfigurationDescription">
|
||||
<source>Clean a specific configuration</source>
|
||||
<target state="new">Clean a specific configuration</target>
|
||||
<note></note>
|
||||
<target state="translated">Belirli bir yapılandırmayı temizler</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,43 +5,43 @@
|
|||
<group id="src/dotnet/commands/dotnet-clean/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Clean Command</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to clean previously generated build outputs.</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdArgProject">
|
||||
<source>PROJECT</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdArgProjDescription">
|
||||
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdOutputDir">
|
||||
<source>OUTPUT_DIR</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdOutputDirDescription">
|
||||
<source>Directory in which the build outputs have been placed</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFramework">
|
||||
<source>FRAMEWORK</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFrameworkDescription">
|
||||
<source>Clean a specific framework</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdConfiguration">
|
||||
<source>CONFIGURATION</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdConfigurationDescription">
|
||||
<source>Clean a specific configuration</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,53 +5,53 @@
|
|||
<group id="src/dotnet/commands/dotnet-clean/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Clean Command</source>
|
||||
<target state="new">.NET Clean Command</target>
|
||||
<note></note>
|
||||
<target state="translated">.NET 清除命令</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to clean previously generated build outputs.</source>
|
||||
<target state="new">Command to clean previously generated build outputs.</target>
|
||||
<note></note>
|
||||
<target state="translated">用于清除先前产生的生成输出的命令。</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdArgProject">
|
||||
<source>PROJECT</source>
|
||||
<target state="new">PROJECT</target>
|
||||
<note></note>
|
||||
<target state="translated">PROJECT</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdArgProjDescription">
|
||||
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
|
||||
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
|
||||
<note></note>
|
||||
<target state="translated">要生成的 MSBuild 项目文件。如果未指定项目文件,MSBuild 将搜索当前工作目录来查找文件扩展名以“proj”结尾的文件并使用该文件。</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdOutputDir">
|
||||
<source>OUTPUT_DIR</source>
|
||||
<target state="new">OUTPUT_DIR</target>
|
||||
<note></note>
|
||||
<target state="translated">OUTPUT_DIR</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdOutputDirDescription">
|
||||
<source>Directory in which the build outputs have been placed</source>
|
||||
<target state="new">Directory in which the build outputs have been placed</target>
|
||||
<note></note>
|
||||
<target state="translated">放置生成输出的目录</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFramework">
|
||||
<source>FRAMEWORK</source>
|
||||
<target state="new">FRAMEWORK</target>
|
||||
<note></note>
|
||||
<target state="translated">FRAMEWORK</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFrameworkDescription">
|
||||
<source>Clean a specific framework</source>
|
||||
<target state="new">Clean a specific framework</target>
|
||||
<note></note>
|
||||
<target state="translated">清理特定的框架</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdConfiguration">
|
||||
<source>CONFIGURATION</source>
|
||||
<target state="new">CONFIGURATION</target>
|
||||
<note></note>
|
||||
<target state="translated">CONFIGURATION</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdConfigurationDescription">
|
||||
<source>Clean a specific configuration</source>
|
||||
<target state="new">Clean a specific configuration</target>
|
||||
<note></note>
|
||||
<target state="translated">清理特定的配置</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,53 +5,53 @@
|
|||
<group id="src/dotnet/commands/dotnet-clean/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Clean Command</source>
|
||||
<target state="new">.NET Clean Command</target>
|
||||
<note></note>
|
||||
<target state="translated">.NET 清除命令</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to clean previously generated build outputs.</source>
|
||||
<target state="new">Command to clean previously generated build outputs.</target>
|
||||
<note></note>
|
||||
<target state="translated">用以清除先前產生之建置輸出的命令。</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdArgProject">
|
||||
<source>PROJECT</source>
|
||||
<target state="new">PROJECT</target>
|
||||
<note></note>
|
||||
<target state="translated">專案</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdArgProjDescription">
|
||||
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
|
||||
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
|
||||
<note></note>
|
||||
<target state="translated">要建置的 MSBuild 專案檔。若未指定專案檔,MSBuild 會在目前的工作目錄搜尋副檔名以 `proj` 結尾的檔案,並使用該檔案。</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdOutputDir">
|
||||
<source>OUTPUT_DIR</source>
|
||||
<target state="new">OUTPUT_DIR</target>
|
||||
<note></note>
|
||||
<target state="translated">OUTPUT_DIR</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdOutputDirDescription">
|
||||
<source>Directory in which the build outputs have been placed</source>
|
||||
<target state="new">Directory in which the build outputs have been placed</target>
|
||||
<note></note>
|
||||
<target state="translated">已放置建置輸出的目錄</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFramework">
|
||||
<source>FRAMEWORK</source>
|
||||
<target state="new">FRAMEWORK</target>
|
||||
<note></note>
|
||||
<target state="translated">架構</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdFrameworkDescription">
|
||||
<source>Clean a specific framework</source>
|
||||
<target state="new">Clean a specific framework</target>
|
||||
<note></note>
|
||||
<target state="translated">清除特定架構</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdConfiguration">
|
||||
<source>CONFIGURATION</source>
|
||||
<target state="new">CONFIGURATION</target>
|
||||
<note></note>
|
||||
<target state="translated">組態</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CmdConfigurationDescription">
|
||||
<source>Clean a specific configuration</source>
|
||||
<target state="new">Clean a specific configuration</target>
|
||||
<note></note>
|
||||
<target state="translated">清除特定組態</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,143 +5,143 @@
|
|||
<group id="src/dotnet/commands/dotnet-help/LocalizableStrings.resx" />
|
||||
<trans-unit id="Usage">
|
||||
<source>Usage</source>
|
||||
<target state="new">Usage</target>
|
||||
<note></note>
|
||||
<target state="translated">Použití</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="Arguments">
|
||||
<source>Arguments</source>
|
||||
<target state="new">Arguments</target>
|
||||
<note></note>
|
||||
<target state="translated">Argumenty</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CommandDefinition">
|
||||
<source>The command to execute</source>
|
||||
<target state="new">The command to execute</target>
|
||||
<note></note>
|
||||
<target state="translated">Prováděný příkaz</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgumentsDefinition">
|
||||
<source>Arguments to pass to the command</source>
|
||||
<target state="new">Arguments to pass to the command</target>
|
||||
<note></note>
|
||||
<target state="translated">Argumenty předané příkazu</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="HostOptionsDefinition">
|
||||
<source>Options specific to dotnet (host)</source>
|
||||
<target state="new">Options specific to dotnet (host)</target>
|
||||
<note></note>
|
||||
<target state="translated">Specifické možnosti dotnetu (hostitel)</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="OptionsDescription">
|
||||
<source>Options common to all commands</source>
|
||||
<target state="new">Options common to all commands</target>
|
||||
<note></note>
|
||||
<target state="translated">Společné možnosti všech příkazů</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CommonOptions">
|
||||
<source>Common options</source>
|
||||
<target state="new">Common options</target>
|
||||
<note></note>
|
||||
<target state="translated">Společné možnosti</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VerboseDefinition">
|
||||
<source>Enable verbose output</source>
|
||||
<target state="new">Enable verbose output</target>
|
||||
<note></note>
|
||||
<target state="translated">Povolit podrobný výstup</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="HelpDefinition">
|
||||
<source>Show help</source>
|
||||
<target state="new">Show help</target>
|
||||
<note></note>
|
||||
<target state="translated">Zobrazit nápovědu</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="HostOptions">
|
||||
<source>Host options (passed before the command)</source>
|
||||
<target state="new">Host options (passed before the command)</target>
|
||||
<note></note>
|
||||
<target state="translated">Možnosti hostitele (předané před příkazem)</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VersionDescription">
|
||||
<source>Display .NET CLI Version Number</source>
|
||||
<target state="new">Display .NET CLI Version Number</target>
|
||||
<note></note>
|
||||
<target state="translated">Zobrazit číslo verze .NET CLI</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="InfoDescription">
|
||||
<source>Display .NET CLI Info</source>
|
||||
<target state="new">Display .NET CLI Info</target>
|
||||
<note></note>
|
||||
<target state="translated">Zobrazit informace o .NET CLI</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="Commands">
|
||||
<source>Commands</source>
|
||||
<target state="new">Commands</target>
|
||||
<note></note>
|
||||
<target state="translated">Příkazy</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NewDefinition">
|
||||
<source>Initialize a basic .NET project</source>
|
||||
<target state="new">Initialize a basic .NET project</target>
|
||||
<note></note>
|
||||
<target state="translated">Inicializovat základní projekt .NET</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RestoreDefinition">
|
||||
<source>Restore dependencies specified in the .NET project</source>
|
||||
<target state="new">Restore dependencies specified in the.NET project</target>
|
||||
<target state="needs-review-translation">Obnovit závislosti zadané v projektu .NET</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="BuildDefinition">
|
||||
<source>Builds a .NET project</source>
|
||||
<target state="new">Builds a .NET project</target>
|
||||
<note></note>
|
||||
<target state="translated">Sestaví projekt .NET</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="PublishDefinition">
|
||||
<source>Publishes a .NET project for deployment (including the runtime)</source>
|
||||
<target state="new">Publishes a .NET project for deployment (including the runtime)</target>
|
||||
<note></note>
|
||||
<target state="translated">Publikuje projekt .NET pro nasazení (včetně modulu runtime)</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RunDefinition">
|
||||
<source>Compiles and immediately executes a .NET project</source>
|
||||
<target state="new">Compiles and immediately executes a.NET project</target>
|
||||
<target state="needs-review-translation">Kompiluje a hned spustí projekt .NET</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="TestDefinition">
|
||||
<source>Runs unit tests using the test runner specified in the project</source>
|
||||
<target state="new">Runs unit tests using the test runner specified in the project</target>
|
||||
<note></note>
|
||||
<target state="translated">Spustí testy jednotek v nástroji Test Runner zadaném v projektu</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="PackDefinition">
|
||||
<source>Creates a NuGet package</source>
|
||||
<target state="new">Creates a NuGet package</target>
|
||||
<note></note>
|
||||
<target state="translated">Vytvoří balíček NuGet</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="MigrateDefinition">
|
||||
<source>Migrates a project.json based project to a msbuild based project</source>
|
||||
<target state="new">Migrates a project.json based project to a msbuild based project</target>
|
||||
<note></note>
|
||||
<target state="translated">Na základě projektu migruje soubor project.json na projekt založený na nástroji MSBuild</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectModificationCommands">
|
||||
<source>Project modification commands</source>
|
||||
<target state="new">Project modification commands</target>
|
||||
<note></note>
|
||||
<target state="translated">Příkazy pro úpravy projektu</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AddDefinition">
|
||||
<source>Add items to the project</source>
|
||||
<target state="new">Add items to the project</target>
|
||||
<note></note>
|
||||
<target state="translated">Přidá položky do projektu</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RemoveDefinition">
|
||||
<source>Remove items from the project</source>
|
||||
<target state="new">Remove items from the project</target>
|
||||
<note></note>
|
||||
<target state="translated">Odebere položky z projektu</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AdvancedCommands">
|
||||
<source>Advanced Commands</source>
|
||||
<target state="new">Advanced Commands</target>
|
||||
<note></note>
|
||||
<target state="translated">Pokročilé příkazy</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NugetDefinition">
|
||||
<source>Provides additional NuGet commands</source>
|
||||
<target state="new">Provides additional NuGet commands</target>
|
||||
<note></note>
|
||||
<target state="translated">Nabízí další příkazy NuGet</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="MsBuildDefinition">
|
||||
<source>msbuilds a project and all of its dependencies</source>
|
||||
<target state="new">msbuilds a project and all of its dependencies</target>
|
||||
<note></note>
|
||||
<target state="translated">Vytvoří projekt nástrojem MSBuild i všechny jeho závislosti</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VsTestDefinition">
|
||||
<source>Runs tests from the specified files</source>
|
||||
<target state="new">Runs tests from the specified files</target>
|
||||
<note></note>
|
||||
<target state="translated">Spustí testy ze zadaných souborů</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,143 +5,143 @@
|
|||
<group id="src/dotnet/commands/dotnet-help/LocalizableStrings.resx" />
|
||||
<trans-unit id="Usage">
|
||||
<source>Usage</source>
|
||||
<target state="new">Usage</target>
|
||||
<note></note>
|
||||
<target state="translated">Syntax</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="Arguments">
|
||||
<source>Arguments</source>
|
||||
<target state="new">Arguments</target>
|
||||
<note></note>
|
||||
<target state="translated">Argumente</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CommandDefinition">
|
||||
<source>The command to execute</source>
|
||||
<target state="new">The command to execute</target>
|
||||
<note></note>
|
||||
<target state="translated">Der auszuführende Befehl</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgumentsDefinition">
|
||||
<source>Arguments to pass to the command</source>
|
||||
<target state="new">Arguments to pass to the command</target>
|
||||
<note></note>
|
||||
<target state="translated">An den Befehl zu übergebende Argumente</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="HostOptionsDefinition">
|
||||
<source>Options specific to dotnet (host)</source>
|
||||
<target state="new">Options specific to dotnet (host)</target>
|
||||
<note></note>
|
||||
<target state="translated">Spezifische dotnet-Optionen (Host)</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="OptionsDescription">
|
||||
<source>Options common to all commands</source>
|
||||
<target state="new">Options common to all commands</target>
|
||||
<note></note>
|
||||
<target state="translated">Allgemeine Optionen für alle Befehle</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CommonOptions">
|
||||
<source>Common options</source>
|
||||
<target state="new">Common options</target>
|
||||
<note></note>
|
||||
<target state="translated">Allgemeine Optionen</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VerboseDefinition">
|
||||
<source>Enable verbose output</source>
|
||||
<target state="new">Enable verbose output</target>
|
||||
<note></note>
|
||||
<target state="translated">Ausführliche Ausgabe aktivieren</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="HelpDefinition">
|
||||
<source>Show help</source>
|
||||
<target state="new">Show help</target>
|
||||
<note></note>
|
||||
<target state="translated">Hilfe anzeigen</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="HostOptions">
|
||||
<source>Host options (passed before the command)</source>
|
||||
<target state="new">Host options (passed before the command)</target>
|
||||
<note></note>
|
||||
<target state="translated">Hostoptionen (werden vor dem Befehl übergeben)</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VersionDescription">
|
||||
<source>Display .NET CLI Version Number</source>
|
||||
<target state="new">Display .NET CLI Version Number</target>
|
||||
<note></note>
|
||||
<target state="translated">.NET-CLI-Versionsnummer anzeigen</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="InfoDescription">
|
||||
<source>Display .NET CLI Info</source>
|
||||
<target state="new">Display .NET CLI Info</target>
|
||||
<note></note>
|
||||
<target state="translated">.NET-CLI-Informationen anzeigen</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="Commands">
|
||||
<source>Commands</source>
|
||||
<target state="new">Commands</target>
|
||||
<note></note>
|
||||
<target state="translated">Befehle</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NewDefinition">
|
||||
<source>Initialize a basic .NET project</source>
|
||||
<target state="new">Initialize a basic .NET project</target>
|
||||
<note></note>
|
||||
<target state="translated">Einfaches .NET-Projekt initialisieren</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RestoreDefinition">
|
||||
<source>Restore dependencies specified in the .NET project</source>
|
||||
<target state="new">Restore dependencies specified in the.NET project</target>
|
||||
<target state="needs-review-translation">Im .NET-Projekt angegebene Abhängigkeiten wiederherstellen</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="BuildDefinition">
|
||||
<source>Builds a .NET project</source>
|
||||
<target state="new">Builds a .NET project</target>
|
||||
<note></note>
|
||||
<target state="translated">Erstellt ein .NET-Projekt.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="PublishDefinition">
|
||||
<source>Publishes a .NET project for deployment (including the runtime)</source>
|
||||
<target state="new">Publishes a .NET project for deployment (including the runtime)</target>
|
||||
<note></note>
|
||||
<target state="translated">Veröffentlicht ein .NET-Projekt für die Bereitstellung (einschließlich Laufzeit).</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RunDefinition">
|
||||
<source>Compiles and immediately executes a .NET project</source>
|
||||
<target state="new">Compiles and immediately executes a.NET project</target>
|
||||
<target state="needs-review-translation">Kompiliert ein .NET-Projekt und führt es umgehend aus.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="TestDefinition">
|
||||
<source>Runs unit tests using the test runner specified in the project</source>
|
||||
<target state="new">Runs unit tests using the test runner specified in the project</target>
|
||||
<note></note>
|
||||
<target state="translated">Führt mithilfe des im Projekt angegebenen Test Runners Komponententests aus.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="PackDefinition">
|
||||
<source>Creates a NuGet package</source>
|
||||
<target state="new">Creates a NuGet package</target>
|
||||
<note></note>
|
||||
<target state="translated">Erstellt ein NuGet-Paket.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="MigrateDefinition">
|
||||
<source>Migrates a project.json based project to a msbuild based project</source>
|
||||
<target state="new">Migrates a project.json based project to a msbuild based project</target>
|
||||
<note></note>
|
||||
<target state="translated">Migriert ein auf "project.json" basierendes Projekt zu einem MSBuild-basierten Projekt.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectModificationCommands">
|
||||
<source>Project modification commands</source>
|
||||
<target state="new">Project modification commands</target>
|
||||
<note></note>
|
||||
<target state="translated">Projektänderungsbefehle</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AddDefinition">
|
||||
<source>Add items to the project</source>
|
||||
<target state="new">Add items to the project</target>
|
||||
<note></note>
|
||||
<target state="translated">Elemente zum Projekt hinzufügen</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RemoveDefinition">
|
||||
<source>Remove items from the project</source>
|
||||
<target state="new">Remove items from the project</target>
|
||||
<note></note>
|
||||
<target state="translated">Elemente aus dem Projekt entfernen</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AdvancedCommands">
|
||||
<source>Advanced Commands</source>
|
||||
<target state="new">Advanced Commands</target>
|
||||
<note></note>
|
||||
<target state="translated">Erweiterte Befehle</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NugetDefinition">
|
||||
<source>Provides additional NuGet commands</source>
|
||||
<target state="new">Provides additional NuGet commands</target>
|
||||
<note></note>
|
||||
<target state="translated">Stellt zusätzliche NuGet-Befehle bereit.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="MsBuildDefinition">
|
||||
<source>msbuilds a project and all of its dependencies</source>
|
||||
<target state="new">msbuilds a project and all of its dependencies</target>
|
||||
<note></note>
|
||||
<target state="translated">Erstellt ein Projekt und alle dazugehörigen Abhängigkeiten mithilfe von MSBuild.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VsTestDefinition">
|
||||
<source>Runs tests from the specified files</source>
|
||||
<target state="new">Runs tests from the specified files</target>
|
||||
<note></note>
|
||||
<target state="translated">Führt Tests auf der Grundlage der angegebenen Dateien aus.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,143 +5,143 @@
|
|||
<group id="src/dotnet/commands/dotnet-help/LocalizableStrings.resx" />
|
||||
<trans-unit id="Usage">
|
||||
<source>Usage</source>
|
||||
<target state="new">Usage</target>
|
||||
<note></note>
|
||||
<target state="translated">Uso</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="Arguments">
|
||||
<source>Arguments</source>
|
||||
<target state="new">Arguments</target>
|
||||
<note></note>
|
||||
<target state="translated">Argumentos</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CommandDefinition">
|
||||
<source>The command to execute</source>
|
||||
<target state="new">The command to execute</target>
|
||||
<note></note>
|
||||
<target state="translated">Comando para ejecutar</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgumentsDefinition">
|
||||
<source>Arguments to pass to the command</source>
|
||||
<target state="new">Arguments to pass to the command</target>
|
||||
<note></note>
|
||||
<target state="translated">Argumentos que se pasan al comando</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="HostOptionsDefinition">
|
||||
<source>Options specific to dotnet (host)</source>
|
||||
<target state="new">Options specific to dotnet (host)</target>
|
||||
<note></note>
|
||||
<target state="translated">Opciones específicas de dotnet (host)</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="OptionsDescription">
|
||||
<source>Options common to all commands</source>
|
||||
<target state="new">Options common to all commands</target>
|
||||
<note></note>
|
||||
<target state="translated">Opciones comunes a todos los comandos</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CommonOptions">
|
||||
<source>Common options</source>
|
||||
<target state="new">Common options</target>
|
||||
<note></note>
|
||||
<target state="translated">Opciones comunes</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VerboseDefinition">
|
||||
<source>Enable verbose output</source>
|
||||
<target state="new">Enable verbose output</target>
|
||||
<note></note>
|
||||
<target state="translated">Habilita la salida detallada</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="HelpDefinition">
|
||||
<source>Show help</source>
|
||||
<target state="new">Show help</target>
|
||||
<note></note>
|
||||
<target state="translated">Muestra la ayuda</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="HostOptions">
|
||||
<source>Host options (passed before the command)</source>
|
||||
<target state="new">Host options (passed before the command)</target>
|
||||
<note></note>
|
||||
<target state="translated">Opciones de host (pasadas antes que el comando)</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VersionDescription">
|
||||
<source>Display .NET CLI Version Number</source>
|
||||
<target state="new">Display .NET CLI Version Number</target>
|
||||
<note></note>
|
||||
<target state="translated">Muestra el número de versión de la CLI de .NET</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="InfoDescription">
|
||||
<source>Display .NET CLI Info</source>
|
||||
<target state="new">Display .NET CLI Info</target>
|
||||
<note></note>
|
||||
<target state="translated">Muestra información de la CLI de .NET</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="Commands">
|
||||
<source>Commands</source>
|
||||
<target state="new">Commands</target>
|
||||
<note></note>
|
||||
<target state="translated">Comandos</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NewDefinition">
|
||||
<source>Initialize a basic .NET project</source>
|
||||
<target state="new">Initialize a basic .NET project</target>
|
||||
<note></note>
|
||||
<target state="translated">Inicializa un proyecto de .NET básico</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RestoreDefinition">
|
||||
<source>Restore dependencies specified in the .NET project</source>
|
||||
<target state="new">Restore dependencies specified in the.NET project</target>
|
||||
<target state="needs-review-translation">Restaura dependencias especificadas en el proyecto de .NET</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="BuildDefinition">
|
||||
<source>Builds a .NET project</source>
|
||||
<target state="new">Builds a .NET project</target>
|
||||
<note></note>
|
||||
<target state="translated">Compila un proyecto de .NET</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="PublishDefinition">
|
||||
<source>Publishes a .NET project for deployment (including the runtime)</source>
|
||||
<target state="new">Publishes a .NET project for deployment (including the runtime)</target>
|
||||
<note></note>
|
||||
<target state="translated">Publica un proyecto de .NET para implementarlo (incluido el entorno de tiempo de ejecución)</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RunDefinition">
|
||||
<source>Compiles and immediately executes a .NET project</source>
|
||||
<target state="new">Compiles and immediately executes a.NET project</target>
|
||||
<target state="needs-review-translation">Compila y ejecuta de inmediato un proyecto de .NET</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="TestDefinition">
|
||||
<source>Runs unit tests using the test runner specified in the project</source>
|
||||
<target state="new">Runs unit tests using the test runner specified in the project</target>
|
||||
<note></note>
|
||||
<target state="translated">Ejecuta pruebas unitarias usando el ejecutor de pruebas especificado en el proyecto</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="PackDefinition">
|
||||
<source>Creates a NuGet package</source>
|
||||
<target state="new">Creates a NuGet package</target>
|
||||
<note></note>
|
||||
<target state="translated">Crea un paquete NuGet</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="MigrateDefinition">
|
||||
<source>Migrates a project.json based project to a msbuild based project</source>
|
||||
<target state="new">Migrates a project.json based project to a msbuild based project</target>
|
||||
<note></note>
|
||||
<target state="translated">Migra un proyecto basado en project.json a un proyecto basado en MSBuild</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectModificationCommands">
|
||||
<source>Project modification commands</source>
|
||||
<target state="new">Project modification commands</target>
|
||||
<note></note>
|
||||
<target state="translated">Comandos de modificación del proyecto</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AddDefinition">
|
||||
<source>Add items to the project</source>
|
||||
<target state="new">Add items to the project</target>
|
||||
<note></note>
|
||||
<target state="translated">Agrega elementos al proyecto</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RemoveDefinition">
|
||||
<source>Remove items from the project</source>
|
||||
<target state="new">Remove items from the project</target>
|
||||
<note></note>
|
||||
<target state="translated">Quita elementos del proyecto</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AdvancedCommands">
|
||||
<source>Advanced Commands</source>
|
||||
<target state="new">Advanced Commands</target>
|
||||
<note></note>
|
||||
<target state="translated">Comandos avanzados</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NugetDefinition">
|
||||
<source>Provides additional NuGet commands</source>
|
||||
<target state="new">Provides additional NuGet commands</target>
|
||||
<note></note>
|
||||
<target state="translated">Proporciona comandos NuGet adicionales</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="MsBuildDefinition">
|
||||
<source>msbuilds a project and all of its dependencies</source>
|
||||
<target state="new">msbuilds a project and all of its dependencies</target>
|
||||
<note></note>
|
||||
<target state="translated">Compila un proyecto y todas sus dependencias con MSBuild</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VsTestDefinition">
|
||||
<source>Runs tests from the specified files</source>
|
||||
<target state="new">Runs tests from the specified files</target>
|
||||
<note></note>
|
||||
<target state="translated">Ejecuta pruebas de los archivos especificados</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,143 +5,143 @@
|
|||
<group id="src/dotnet/commands/dotnet-help/LocalizableStrings.resx" />
|
||||
<trans-unit id="Usage">
|
||||
<source>Usage</source>
|
||||
<target state="new">Usage</target>
|
||||
<note></note>
|
||||
<target state="translated">Utilisation</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="Arguments">
|
||||
<source>Arguments</source>
|
||||
<target state="new">Arguments</target>
|
||||
<note></note>
|
||||
<target state="translated">Arguments</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CommandDefinition">
|
||||
<source>The command to execute</source>
|
||||
<target state="new">The command to execute</target>
|
||||
<note></note>
|
||||
<target state="translated">Commande à exécuter</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgumentsDefinition">
|
||||
<source>Arguments to pass to the command</source>
|
||||
<target state="new">Arguments to pass to the command</target>
|
||||
<note></note>
|
||||
<target state="translated">Arguments à passer à la commande</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="HostOptionsDefinition">
|
||||
<source>Options specific to dotnet (host)</source>
|
||||
<target state="new">Options specific to dotnet (host)</target>
|
||||
<note></note>
|
||||
<target state="translated">Options spécifiques à dotnet (hôte)</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="OptionsDescription">
|
||||
<source>Options common to all commands</source>
|
||||
<target state="new">Options common to all commands</target>
|
||||
<note></note>
|
||||
<target state="translated">Options communes à toutes les commandes</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CommonOptions">
|
||||
<source>Common options</source>
|
||||
<target state="new">Common options</target>
|
||||
<note></note>
|
||||
<target state="translated">Options communes</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VerboseDefinition">
|
||||
<source>Enable verbose output</source>
|
||||
<target state="new">Enable verbose output</target>
|
||||
<note></note>
|
||||
<target state="translated">Activer la sortie détaillée</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="HelpDefinition">
|
||||
<source>Show help</source>
|
||||
<target state="new">Show help</target>
|
||||
<note></note>
|
||||
<target state="translated">Afficher l'aide</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="HostOptions">
|
||||
<source>Host options (passed before the command)</source>
|
||||
<target state="new">Host options (passed before the command)</target>
|
||||
<note></note>
|
||||
<target state="translated">Options de l'hôte (passées avant la commande)</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VersionDescription">
|
||||
<source>Display .NET CLI Version Number</source>
|
||||
<target state="new">Display .NET CLI Version Number</target>
|
||||
<note></note>
|
||||
<target state="translated">Afficher le numéro de version de l'interface CLI .NET</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="InfoDescription">
|
||||
<source>Display .NET CLI Info</source>
|
||||
<target state="new">Display .NET CLI Info</target>
|
||||
<note></note>
|
||||
<target state="translated">Affichage des informations sur l'interface CLI .NET</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="Commands">
|
||||
<source>Commands</source>
|
||||
<target state="new">Commands</target>
|
||||
<note></note>
|
||||
<target state="translated">Commandes</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NewDefinition">
|
||||
<source>Initialize a basic .NET project</source>
|
||||
<target state="new">Initialize a basic .NET project</target>
|
||||
<note></note>
|
||||
<target state="translated">Initialiser un projet .NET de base</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RestoreDefinition">
|
||||
<source>Restore dependencies specified in the .NET project</source>
|
||||
<target state="new">Restore dependencies specified in the.NET project</target>
|
||||
<target state="needs-review-translation">Restaurer les dépendances spécifiées dans le projet .NET</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="BuildDefinition">
|
||||
<source>Builds a .NET project</source>
|
||||
<target state="new">Builds a .NET project</target>
|
||||
<note></note>
|
||||
<target state="translated">Génère un projet .NET</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="PublishDefinition">
|
||||
<source>Publishes a .NET project for deployment (including the runtime)</source>
|
||||
<target state="new">Publishes a .NET project for deployment (including the runtime)</target>
|
||||
<note></note>
|
||||
<target state="translated">Publie un projet .NET à des fins de déploiement (runtime inclus)</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RunDefinition">
|
||||
<source>Compiles and immediately executes a .NET project</source>
|
||||
<target state="new">Compiles and immediately executes a.NET project</target>
|
||||
<target state="needs-review-translation">Compile et exécute immédiatement un projet a.NET</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="TestDefinition">
|
||||
<source>Runs unit tests using the test runner specified in the project</source>
|
||||
<target state="new">Runs unit tests using the test runner specified in the project</target>
|
||||
<note></note>
|
||||
<target state="translated">Exécute des tests unitaires à l'aide du Test Runner spécifié dans le projet</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="PackDefinition">
|
||||
<source>Creates a NuGet package</source>
|
||||
<target state="new">Creates a NuGet package</target>
|
||||
<note></note>
|
||||
<target state="translated">Crée un package NuGet</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="MigrateDefinition">
|
||||
<source>Migrates a project.json based project to a msbuild based project</source>
|
||||
<target state="new">Migrates a project.json based project to a msbuild based project</target>
|
||||
<note></note>
|
||||
<target state="translated">Migre un projet basé sur project.json vers un projet basé sur msbuild</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectModificationCommands">
|
||||
<source>Project modification commands</source>
|
||||
<target state="new">Project modification commands</target>
|
||||
<note></note>
|
||||
<target state="translated">Commandes de modification de projet</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AddDefinition">
|
||||
<source>Add items to the project</source>
|
||||
<target state="new">Add items to the project</target>
|
||||
<note></note>
|
||||
<target state="translated">Ajouter des éléments au projet</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RemoveDefinition">
|
||||
<source>Remove items from the project</source>
|
||||
<target state="new">Remove items from the project</target>
|
||||
<note></note>
|
||||
<target state="translated">Supprimer des éléments du projet</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AdvancedCommands">
|
||||
<source>Advanced Commands</source>
|
||||
<target state="new">Advanced Commands</target>
|
||||
<note></note>
|
||||
<target state="translated">Commandes avancées</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NugetDefinition">
|
||||
<source>Provides additional NuGet commands</source>
|
||||
<target state="new">Provides additional NuGet commands</target>
|
||||
<note></note>
|
||||
<target state="translated">Fournit des commandes NuGet supplémentaires</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="MsBuildDefinition">
|
||||
<source>msbuilds a project and all of its dependencies</source>
|
||||
<target state="new">msbuilds a project and all of its dependencies</target>
|
||||
<note></note>
|
||||
<target state="translated">msbuilds un projet et toutes ses dépendances</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VsTestDefinition">
|
||||
<source>Runs tests from the specified files</source>
|
||||
<target state="new">Runs tests from the specified files</target>
|
||||
<note></note>
|
||||
<target state="translated">Exécute les tests à partir des fichiers spécifiés</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,143 +5,143 @@
|
|||
<group id="src/dotnet/commands/dotnet-help/LocalizableStrings.resx" />
|
||||
<trans-unit id="Usage">
|
||||
<source>Usage</source>
|
||||
<target state="new">Usage</target>
|
||||
<note></note>
|
||||
<target state="translated">Utilizzo</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="Arguments">
|
||||
<source>Arguments</source>
|
||||
<target state="new">Arguments</target>
|
||||
<note></note>
|
||||
<target state="translated">Argomenti</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CommandDefinition">
|
||||
<source>The command to execute</source>
|
||||
<target state="new">The command to execute</target>
|
||||
<note></note>
|
||||
<target state="translated">Comando da eseguire</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgumentsDefinition">
|
||||
<source>Arguments to pass to the command</source>
|
||||
<target state="new">Arguments to pass to the command</target>
|
||||
<note></note>
|
||||
<target state="translated">Argomenti da passare al comando</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="HostOptionsDefinition">
|
||||
<source>Options specific to dotnet (host)</source>
|
||||
<target state="new">Options specific to dotnet (host)</target>
|
||||
<note></note>
|
||||
<target state="translated">Opzioni specifiche di dotnet (host)</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="OptionsDescription">
|
||||
<source>Options common to all commands</source>
|
||||
<target state="new">Options common to all commands</target>
|
||||
<note></note>
|
||||
<target state="translated">Opzioni comuni a tutti i comandi</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CommonOptions">
|
||||
<source>Common options</source>
|
||||
<target state="new">Common options</target>
|
||||
<note></note>
|
||||
<target state="translated">Opzioni comuni</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VerboseDefinition">
|
||||
<source>Enable verbose output</source>
|
||||
<target state="new">Enable verbose output</target>
|
||||
<note></note>
|
||||
<target state="translated">Abilita l'output dettagliato</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="HelpDefinition">
|
||||
<source>Show help</source>
|
||||
<target state="new">Show help</target>
|
||||
<note></note>
|
||||
<target state="translated">Mostra la Guida</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="HostOptions">
|
||||
<source>Host options (passed before the command)</source>
|
||||
<target state="new">Host options (passed before the command)</target>
|
||||
<note></note>
|
||||
<target state="translated">Opzioni host (passate prima del comando)</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VersionDescription">
|
||||
<source>Display .NET CLI Version Number</source>
|
||||
<target state="new">Display .NET CLI Version Number</target>
|
||||
<note></note>
|
||||
<target state="translated">Visualizza il numero di versione dell'interfaccia della riga di comando .NET</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="InfoDescription">
|
||||
<source>Display .NET CLI Info</source>
|
||||
<target state="new">Display .NET CLI Info</target>
|
||||
<note></note>
|
||||
<target state="translated">Visualizza le informazioni sull'interfaccia della riga di comando .NET</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="Commands">
|
||||
<source>Commands</source>
|
||||
<target state="new">Commands</target>
|
||||
<note></note>
|
||||
<target state="translated">Comandi</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NewDefinition">
|
||||
<source>Initialize a basic .NET project</source>
|
||||
<target state="new">Initialize a basic .NET project</target>
|
||||
<note></note>
|
||||
<target state="translated">Inizializza un progetto .NET di base</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RestoreDefinition">
|
||||
<source>Restore dependencies specified in the .NET project</source>
|
||||
<target state="new">Restore dependencies specified in the.NET project</target>
|
||||
<target state="needs-review-translation">Ripristina le dipendenze specificate nel progetto .NET</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="BuildDefinition">
|
||||
<source>Builds a .NET project</source>
|
||||
<target state="new">Builds a .NET project</target>
|
||||
<note></note>
|
||||
<target state="translated">Compila un progetto .NET</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="PublishDefinition">
|
||||
<source>Publishes a .NET project for deployment (including the runtime)</source>
|
||||
<target state="new">Publishes a .NET project for deployment (including the runtime)</target>
|
||||
<note></note>
|
||||
<target state="translated">Pubblica un progetto .NET per la distribuzione (includendo il runtime)</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RunDefinition">
|
||||
<source>Compiles and immediately executes a .NET project</source>
|
||||
<target state="new">Compiles and immediately executes a.NET project</target>
|
||||
<target state="needs-review-translation">Compila ed esegue immediatamente un progetto .NET</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="TestDefinition">
|
||||
<source>Runs unit tests using the test runner specified in the project</source>
|
||||
<target state="new">Runs unit tests using the test runner specified in the project</target>
|
||||
<note></note>
|
||||
<target state="translated">Esegue gli unit test con l'istanza di Test Runner specificata nel progetto</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="PackDefinition">
|
||||
<source>Creates a NuGet package</source>
|
||||
<target state="new">Creates a NuGet package</target>
|
||||
<note></note>
|
||||
<target state="translated">Crea un pacchetto NuGet</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="MigrateDefinition">
|
||||
<source>Migrates a project.json based project to a msbuild based project</source>
|
||||
<target state="new">Migrates a project.json based project to a msbuild based project</target>
|
||||
<note></note>
|
||||
<target state="translated">Esegue la migrazione di un progetto basato su project.json in uno basato su MSBuild</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectModificationCommands">
|
||||
<source>Project modification commands</source>
|
||||
<target state="new">Project modification commands</target>
|
||||
<note></note>
|
||||
<target state="translated">Comandi di modifica del progetto</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AddDefinition">
|
||||
<source>Add items to the project</source>
|
||||
<target state="new">Add items to the project</target>
|
||||
<note></note>
|
||||
<target state="translated">Consente di aggiungere elementi al progetto</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RemoveDefinition">
|
||||
<source>Remove items from the project</source>
|
||||
<target state="new">Remove items from the project</target>
|
||||
<note></note>
|
||||
<target state="translated">Consente di rimuovere elementi dal progetto</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AdvancedCommands">
|
||||
<source>Advanced Commands</source>
|
||||
<target state="new">Advanced Commands</target>
|
||||
<note></note>
|
||||
<target state="translated">Comandi avanzati</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NugetDefinition">
|
||||
<source>Provides additional NuGet commands</source>
|
||||
<target state="new">Provides additional NuGet commands</target>
|
||||
<note></note>
|
||||
<target state="translated">Fornisce comandi NuGet aggiuntivi</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="MsBuildDefinition">
|
||||
<source>msbuilds a project and all of its dependencies</source>
|
||||
<target state="new">msbuilds a project and all of its dependencies</target>
|
||||
<note></note>
|
||||
<target state="translated">Esegue MSBuild su un progetto e su tutte le relative dipendenze</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VsTestDefinition">
|
||||
<source>Runs tests from the specified files</source>
|
||||
<target state="new">Runs tests from the specified files</target>
|
||||
<note></note>
|
||||
<target state="translated">Esegue i test dai file specificati</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,143 +5,143 @@
|
|||
<group id="src/dotnet/commands/dotnet-help/LocalizableStrings.resx" />
|
||||
<trans-unit id="Usage">
|
||||
<source>Usage</source>
|
||||
<target state="new">Usage</target>
|
||||
<note></note>
|
||||
<target state="translated">使用法</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="Arguments">
|
||||
<source>Arguments</source>
|
||||
<target state="new">Arguments</target>
|
||||
<note></note>
|
||||
<target state="translated">Arguments</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CommandDefinition">
|
||||
<source>The command to execute</source>
|
||||
<target state="new">The command to execute</target>
|
||||
<note></note>
|
||||
<target state="translated">実行するコマンド</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgumentsDefinition">
|
||||
<source>Arguments to pass to the command</source>
|
||||
<target state="new">Arguments to pass to the command</target>
|
||||
<note></note>
|
||||
<target state="translated">コマンドに渡す引数</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="HostOptionsDefinition">
|
||||
<source>Options specific to dotnet (host)</source>
|
||||
<target state="new">Options specific to dotnet (host)</target>
|
||||
<note></note>
|
||||
<target state="translated">dotnet (ホスト) 固有のオプション</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="OptionsDescription">
|
||||
<source>Options common to all commands</source>
|
||||
<target state="new">Options common to all commands</target>
|
||||
<note></note>
|
||||
<target state="translated">すべてのコマンドに共通のオプション</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CommonOptions">
|
||||
<source>Common options</source>
|
||||
<target state="new">Common options</target>
|
||||
<note></note>
|
||||
<target state="translated">共通のオプション</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VerboseDefinition">
|
||||
<source>Enable verbose output</source>
|
||||
<target state="new">Enable verbose output</target>
|
||||
<note></note>
|
||||
<target state="translated">詳細な出力を有効にする</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="HelpDefinition">
|
||||
<source>Show help</source>
|
||||
<target state="new">Show help</target>
|
||||
<note></note>
|
||||
<target state="translated">ヘルプを表示する</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="HostOptions">
|
||||
<source>Host options (passed before the command)</source>
|
||||
<target state="new">Host options (passed before the command)</target>
|
||||
<note></note>
|
||||
<target state="translated">ホストのオプション (コマンドの前に渡されます)</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VersionDescription">
|
||||
<source>Display .NET CLI Version Number</source>
|
||||
<target state="new">Display .NET CLI Version Number</target>
|
||||
<note></note>
|
||||
<target state="translated">.NET CLI のバージョン番号を表示する</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="InfoDescription">
|
||||
<source>Display .NET CLI Info</source>
|
||||
<target state="new">Display .NET CLI Info</target>
|
||||
<note></note>
|
||||
<target state="translated">.NET CLI の情報を表示する</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="Commands">
|
||||
<source>Commands</source>
|
||||
<target state="new">Commands</target>
|
||||
<note></note>
|
||||
<target state="translated">コマンド</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NewDefinition">
|
||||
<source>Initialize a basic .NET project</source>
|
||||
<target state="new">Initialize a basic .NET project</target>
|
||||
<note></note>
|
||||
<target state="translated">基本的な .NET プロジェクトを初期化する</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RestoreDefinition">
|
||||
<source>Restore dependencies specified in the .NET project</source>
|
||||
<target state="new">Restore dependencies specified in the.NET project</target>
|
||||
<target state="needs-review-translation">.NET プロジェクトに指定されている依存関係を復元する</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="BuildDefinition">
|
||||
<source>Builds a .NET project</source>
|
||||
<target state="new">Builds a .NET project</target>
|
||||
<note></note>
|
||||
<target state="translated">.NET プロジェクトを構築する</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="PublishDefinition">
|
||||
<source>Publishes a .NET project for deployment (including the runtime)</source>
|
||||
<target state="new">Publishes a .NET project for deployment (including the runtime)</target>
|
||||
<note></note>
|
||||
<target state="translated">展開用の .NET プロジェクトを発行する (ランタイムを含む)</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RunDefinition">
|
||||
<source>Compiles and immediately executes a .NET project</source>
|
||||
<target state="new">Compiles and immediately executes a.NET project</target>
|
||||
<target state="needs-review-translation">.NET プロジェクトをコンパイルして、直ちに実行する</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="TestDefinition">
|
||||
<source>Runs unit tests using the test runner specified in the project</source>
|
||||
<target state="new">Runs unit tests using the test runner specified in the project</target>
|
||||
<note></note>
|
||||
<target state="translated">プロジェクトに指定されているテスト ランナーを使用して、単体テストを実行する</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="PackDefinition">
|
||||
<source>Creates a NuGet package</source>
|
||||
<target state="new">Creates a NuGet package</target>
|
||||
<note></note>
|
||||
<target state="translated">NuGet パッケージを作成する</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="MigrateDefinition">
|
||||
<source>Migrates a project.json based project to a msbuild based project</source>
|
||||
<target state="new">Migrates a project.json based project to a msbuild based project</target>
|
||||
<note></note>
|
||||
<target state="translated">project.json ベースのプロジェクトを msbuild ベースのプロジェクトに移行する</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectModificationCommands">
|
||||
<source>Project modification commands</source>
|
||||
<target state="new">Project modification commands</target>
|
||||
<note></note>
|
||||
<target state="translated">プロジェクト変更コマンド</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AddDefinition">
|
||||
<source>Add items to the project</source>
|
||||
<target state="new">Add items to the project</target>
|
||||
<note></note>
|
||||
<target state="translated">項目をプロジェクトに追加する</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RemoveDefinition">
|
||||
<source>Remove items from the project</source>
|
||||
<target state="new">Remove items from the project</target>
|
||||
<note></note>
|
||||
<target state="translated">項目をプロジェクトから削除する</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AdvancedCommands">
|
||||
<source>Advanced Commands</source>
|
||||
<target state="new">Advanced Commands</target>
|
||||
<note></note>
|
||||
<target state="translated">高度なコマンド</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NugetDefinition">
|
||||
<source>Provides additional NuGet commands</source>
|
||||
<target state="new">Provides additional NuGet commands</target>
|
||||
<note></note>
|
||||
<target state="translated">追加の NuGet コマンドを提供する</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="MsBuildDefinition">
|
||||
<source>msbuilds a project and all of its dependencies</source>
|
||||
<target state="new">msbuilds a project and all of its dependencies</target>
|
||||
<note></note>
|
||||
<target state="translated">プロジェクトとそのすべての依存関係を msbuild で構築する</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VsTestDefinition">
|
||||
<source>Runs tests from the specified files</source>
|
||||
<target state="new">Runs tests from the specified files</target>
|
||||
<note></note>
|
||||
<target state="translated">指定されたファイルからテストを実行する</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,143 +5,143 @@
|
|||
<group id="src/dotnet/commands/dotnet-help/LocalizableStrings.resx" />
|
||||
<trans-unit id="Usage">
|
||||
<source>Usage</source>
|
||||
<target state="new">Usage</target>
|
||||
<note></note>
|
||||
<target state="translated">사용법</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="Arguments">
|
||||
<source>Arguments</source>
|
||||
<target state="new">Arguments</target>
|
||||
<note></note>
|
||||
<target state="translated">인수</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CommandDefinition">
|
||||
<source>The command to execute</source>
|
||||
<target state="new">The command to execute</target>
|
||||
<note></note>
|
||||
<target state="translated">실행할 명령입니다.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgumentsDefinition">
|
||||
<source>Arguments to pass to the command</source>
|
||||
<target state="new">Arguments to pass to the command</target>
|
||||
<note></note>
|
||||
<target state="translated">명령에 전달할 인수입니다.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="HostOptionsDefinition">
|
||||
<source>Options specific to dotnet (host)</source>
|
||||
<target state="new">Options specific to dotnet (host)</target>
|
||||
<note></note>
|
||||
<target state="translated">dotnet(호스트)과 관련된 옵션입니다.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="OptionsDescription">
|
||||
<source>Options common to all commands</source>
|
||||
<target state="new">Options common to all commands</target>
|
||||
<note></note>
|
||||
<target state="translated">모든 명령에 공통된 옵션입니다.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CommonOptions">
|
||||
<source>Common options</source>
|
||||
<target state="new">Common options</target>
|
||||
<note></note>
|
||||
<target state="translated">공통 옵션</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VerboseDefinition">
|
||||
<source>Enable verbose output</source>
|
||||
<target state="new">Enable verbose output</target>
|
||||
<note></note>
|
||||
<target state="translated">자세한 정보 출력 사용</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="HelpDefinition">
|
||||
<source>Show help</source>
|
||||
<target state="new">Show help</target>
|
||||
<note></note>
|
||||
<target state="translated">도움말 표시</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="HostOptions">
|
||||
<source>Host options (passed before the command)</source>
|
||||
<target state="new">Host options (passed before the command)</target>
|
||||
<note></note>
|
||||
<target state="translated">호스트 옵션(명령 전에 전달됨)</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VersionDescription">
|
||||
<source>Display .NET CLI Version Number</source>
|
||||
<target state="new">Display .NET CLI Version Number</target>
|
||||
<note></note>
|
||||
<target state="translated">.NET CLI 버전 번호 표시</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="InfoDescription">
|
||||
<source>Display .NET CLI Info</source>
|
||||
<target state="new">Display .NET CLI Info</target>
|
||||
<note></note>
|
||||
<target state="translated">.NET CLI 정보 표시</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="Commands">
|
||||
<source>Commands</source>
|
||||
<target state="new">Commands</target>
|
||||
<note></note>
|
||||
<target state="translated">명령</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NewDefinition">
|
||||
<source>Initialize a basic .NET project</source>
|
||||
<target state="new">Initialize a basic .NET project</target>
|
||||
<note></note>
|
||||
<target state="translated">기본 .NET 프로젝트를 초기화합니다.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RestoreDefinition">
|
||||
<source>Restore dependencies specified in the .NET project</source>
|
||||
<target state="new">Restore dependencies specified in the.NET project</target>
|
||||
<target state="needs-review-translation">.NET 프로젝트에 지정된 종속성을 복원합니다.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="BuildDefinition">
|
||||
<source>Builds a .NET project</source>
|
||||
<target state="new">Builds a .NET project</target>
|
||||
<note></note>
|
||||
<target state="translated">.NET 프로젝트를 빌드합니다.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="PublishDefinition">
|
||||
<source>Publishes a .NET project for deployment (including the runtime)</source>
|
||||
<target state="new">Publishes a .NET project for deployment (including the runtime)</target>
|
||||
<note></note>
|
||||
<target state="translated">배포하기 위해 .NET 프로젝트를 게시합니다(런타임 포함).</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RunDefinition">
|
||||
<source>Compiles and immediately executes a .NET project</source>
|
||||
<target state="new">Compiles and immediately executes a.NET project</target>
|
||||
<target state="needs-review-translation">.NET 프로젝트를 컴파일하고 즉시 실행합니다.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="TestDefinition">
|
||||
<source>Runs unit tests using the test runner specified in the project</source>
|
||||
<target state="new">Runs unit tests using the test runner specified in the project</target>
|
||||
<note></note>
|
||||
<target state="translated">프로젝트에 지정된 Test Runner를 사용하여 유닛 테스트를 실행합니다.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="PackDefinition">
|
||||
<source>Creates a NuGet package</source>
|
||||
<target state="new">Creates a NuGet package</target>
|
||||
<note></note>
|
||||
<target state="translated">NuGet 패키지를 만듭니다.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="MigrateDefinition">
|
||||
<source>Migrates a project.json based project to a msbuild based project</source>
|
||||
<target state="new">Migrates a project.json based project to a msbuild based project</target>
|
||||
<note></note>
|
||||
<target state="translated">project.json 기반 프로젝트를 msbuild 빌드 기반 프로젝트로 마이그레이션합니다.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectModificationCommands">
|
||||
<source>Project modification commands</source>
|
||||
<target state="new">Project modification commands</target>
|
||||
<note></note>
|
||||
<target state="translated">프로젝트 수정 명령</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AddDefinition">
|
||||
<source>Add items to the project</source>
|
||||
<target state="new">Add items to the project</target>
|
||||
<note></note>
|
||||
<target state="translated">프로젝트에 항목을 추가합니다.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RemoveDefinition">
|
||||
<source>Remove items from the project</source>
|
||||
<target state="new">Remove items from the project</target>
|
||||
<note></note>
|
||||
<target state="translated">프로젝트에서 항목을 제거합니다.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AdvancedCommands">
|
||||
<source>Advanced Commands</source>
|
||||
<target state="new">Advanced Commands</target>
|
||||
<note></note>
|
||||
<target state="translated">고급 명령</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NugetDefinition">
|
||||
<source>Provides additional NuGet commands</source>
|
||||
<target state="new">Provides additional NuGet commands</target>
|
||||
<note></note>
|
||||
<target state="translated">추가 NuGet 명령을 제공합니다.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="MsBuildDefinition">
|
||||
<source>msbuilds a project and all of its dependencies</source>
|
||||
<target state="new">msbuilds a project and all of its dependencies</target>
|
||||
<note></note>
|
||||
<target state="translated">프로젝트 및 프로젝트의 모든 종속성을 msbuild합니다.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VsTestDefinition">
|
||||
<source>Runs tests from the specified files</source>
|
||||
<target state="new">Runs tests from the specified files</target>
|
||||
<note></note>
|
||||
<target state="translated">지정한 파일에서 테스트를 실행합니다.</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,143 +5,143 @@
|
|||
<group id="src/dotnet/commands/dotnet-help/LocalizableStrings.resx" />
|
||||
<trans-unit id="Usage">
|
||||
<source>Usage</source>
|
||||
<target state="new">Usage</target>
|
||||
<note></note>
|
||||
<target state="translated">Użycie</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="Arguments">
|
||||
<source>Arguments</source>
|
||||
<target state="new">Arguments</target>
|
||||
<note></note>
|
||||
<target state="translated">Argumenty</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CommandDefinition">
|
||||
<source>The command to execute</source>
|
||||
<target state="new">The command to execute</target>
|
||||
<note></note>
|
||||
<target state="translated">Polecenie do wykonania</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgumentsDefinition">
|
||||
<source>Arguments to pass to the command</source>
|
||||
<target state="new">Arguments to pass to the command</target>
|
||||
<note></note>
|
||||
<target state="translated">Argumenty, które zostaną przekazane do polecenia</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="HostOptionsDefinition">
|
||||
<source>Options specific to dotnet (host)</source>
|
||||
<target state="new">Options specific to dotnet (host)</target>
|
||||
<note></note>
|
||||
<target state="translated">Opcje specyficzne dla poleceń dotnet (hosta)</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="OptionsDescription">
|
||||
<source>Options common to all commands</source>
|
||||
<target state="new">Options common to all commands</target>
|
||||
<note></note>
|
||||
<target state="translated">Opcje wspólne dla wszystkich poleceń</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CommonOptions">
|
||||
<source>Common options</source>
|
||||
<target state="new">Common options</target>
|
||||
<note></note>
|
||||
<target state="translated">Opcje wspólne</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VerboseDefinition">
|
||||
<source>Enable verbose output</source>
|
||||
<target state="new">Enable verbose output</target>
|
||||
<note></note>
|
||||
<target state="translated">Wyświetl pełne dane wyjściowe</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="HelpDefinition">
|
||||
<source>Show help</source>
|
||||
<target state="new">Show help</target>
|
||||
<note></note>
|
||||
<target state="translated">Wyświetl pomoc</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="HostOptions">
|
||||
<source>Host options (passed before the command)</source>
|
||||
<target state="new">Host options (passed before the command)</target>
|
||||
<note></note>
|
||||
<target state="translated">Opcje hosta (przekazywane przed poleceniem)</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VersionDescription">
|
||||
<source>Display .NET CLI Version Number</source>
|
||||
<target state="new">Display .NET CLI Version Number</target>
|
||||
<note></note>
|
||||
<target state="translated">Wyświetl numer wersji interfejsu wiersza polecenia platformy .NET</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="InfoDescription">
|
||||
<source>Display .NET CLI Info</source>
|
||||
<target state="new">Display .NET CLI Info</target>
|
||||
<note></note>
|
||||
<target state="translated">Wyświetl informacje o interfejsie wiersza polecenia platformy .NET</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="Commands">
|
||||
<source>Commands</source>
|
||||
<target state="new">Commands</target>
|
||||
<note></note>
|
||||
<target state="translated">Polecenia</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NewDefinition">
|
||||
<source>Initialize a basic .NET project</source>
|
||||
<target state="new">Initialize a basic .NET project</target>
|
||||
<note></note>
|
||||
<target state="translated">Zainicjuj podstawowy projekt platformy .NET</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RestoreDefinition">
|
||||
<source>Restore dependencies specified in the .NET project</source>
|
||||
<target state="new">Restore dependencies specified in the.NET project</target>
|
||||
<target state="needs-review-translation">Przywróć zależności określone w projekcie platformy .NET</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="BuildDefinition">
|
||||
<source>Builds a .NET project</source>
|
||||
<target state="new">Builds a .NET project</target>
|
||||
<note></note>
|
||||
<target state="translated">Kompiluje projekt platformy .NET</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="PublishDefinition">
|
||||
<source>Publishes a .NET project for deployment (including the runtime)</source>
|
||||
<target state="new">Publishes a .NET project for deployment (including the runtime)</target>
|
||||
<note></note>
|
||||
<target state="translated">Publikuje projekt platformy .NET do wdrożenia (w tym środowisko uruchomieniowe)</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RunDefinition">
|
||||
<source>Compiles and immediately executes a .NET project</source>
|
||||
<target state="new">Compiles and immediately executes a.NET project</target>
|
||||
<target state="needs-review-translation">Kompiluje i natychmiast wykonuje projekt platformy .NET</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="TestDefinition">
|
||||
<source>Runs unit tests using the test runner specified in the project</source>
|
||||
<target state="new">Runs unit tests using the test runner specified in the project</target>
|
||||
<note></note>
|
||||
<target state="translated">Uruchamia testy jednostkowe przy użyciu określonego w projekcie modułu uruchamiającego testy</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="PackDefinition">
|
||||
<source>Creates a NuGet package</source>
|
||||
<target state="new">Creates a NuGet package</target>
|
||||
<note></note>
|
||||
<target state="translated">Tworzy pakiet NuGet</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="MigrateDefinition">
|
||||
<source>Migrates a project.json based project to a msbuild based project</source>
|
||||
<target state="new">Migrates a project.json based project to a msbuild based project</target>
|
||||
<note></note>
|
||||
<target state="translated">Migruje projekt oparty na pliku project.json do projektu opartego na programie MSBuild</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectModificationCommands">
|
||||
<source>Project modification commands</source>
|
||||
<target state="new">Project modification commands</target>
|
||||
<note></note>
|
||||
<target state="translated">Polecenia modyfikacji projektu</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AddDefinition">
|
||||
<source>Add items to the project</source>
|
||||
<target state="new">Add items to the project</target>
|
||||
<note></note>
|
||||
<target state="translated">Dodaj elementy do projektu</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RemoveDefinition">
|
||||
<source>Remove items from the project</source>
|
||||
<target state="new">Remove items from the project</target>
|
||||
<note></note>
|
||||
<target state="translated">Usuń elementy z projektu</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AdvancedCommands">
|
||||
<source>Advanced Commands</source>
|
||||
<target state="new">Advanced Commands</target>
|
||||
<note></note>
|
||||
<target state="translated">Polecenia zaawansowane</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NugetDefinition">
|
||||
<source>Provides additional NuGet commands</source>
|
||||
<target state="new">Provides additional NuGet commands</target>
|
||||
<note></note>
|
||||
<target state="translated">Udostępnia dodatkowe polecenia NuGet</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="MsBuildDefinition">
|
||||
<source>msbuilds a project and all of its dependencies</source>
|
||||
<target state="new">msbuilds a project and all of its dependencies</target>
|
||||
<note></note>
|
||||
<target state="translated">Kompiluje projekt i wszystkie jego zależności przy użyciu programu MSBuild</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VsTestDefinition">
|
||||
<source>Runs tests from the specified files</source>
|
||||
<target state="new">Runs tests from the specified files</target>
|
||||
<note></note>
|
||||
<target state="translated">Uruchamia testy z określonych plików</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,143 +5,143 @@
|
|||
<group id="src/dotnet/commands/dotnet-help/LocalizableStrings.resx" />
|
||||
<trans-unit id="Usage">
|
||||
<source>Usage</source>
|
||||
<target state="new">Usage</target>
|
||||
<note></note>
|
||||
<target state="translated">Uso</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="Arguments">
|
||||
<source>Arguments</source>
|
||||
<target state="new">Arguments</target>
|
||||
<note></note>
|
||||
<target state="translated">Argumentos</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CommandDefinition">
|
||||
<source>The command to execute</source>
|
||||
<target state="new">The command to execute</target>
|
||||
<note></note>
|
||||
<target state="translated">O comando a ser executado</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgumentsDefinition">
|
||||
<source>Arguments to pass to the command</source>
|
||||
<target state="new">Arguments to pass to the command</target>
|
||||
<note></note>
|
||||
<target state="translated">Argumentos a serem passados para o comando</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="HostOptionsDefinition">
|
||||
<source>Options specific to dotnet (host)</source>
|
||||
<target state="new">Options specific to dotnet (host)</target>
|
||||
<note></note>
|
||||
<target state="translated">Opções específicas para o dotnet (host)</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="OptionsDescription">
|
||||
<source>Options common to all commands</source>
|
||||
<target state="new">Options common to all commands</target>
|
||||
<note></note>
|
||||
<target state="translated">Opções comuns para todos os comandos</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CommonOptions">
|
||||
<source>Common options</source>
|
||||
<target state="new">Common options</target>
|
||||
<note></note>
|
||||
<target state="translated">Opções comuns</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VerboseDefinition">
|
||||
<source>Enable verbose output</source>
|
||||
<target state="new">Enable verbose output</target>
|
||||
<note></note>
|
||||
<target state="translated">Habilitar saída detalhada</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="HelpDefinition">
|
||||
<source>Show help</source>
|
||||
<target state="new">Show help</target>
|
||||
<note></note>
|
||||
<target state="translated">Mostrar ajuda</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="HostOptions">
|
||||
<source>Host options (passed before the command)</source>
|
||||
<target state="new">Host options (passed before the command)</target>
|
||||
<note></note>
|
||||
<target state="translated">Opções de host (passadas antes do comando)</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VersionDescription">
|
||||
<source>Display .NET CLI Version Number</source>
|
||||
<target state="new">Display .NET CLI Version Number</target>
|
||||
<note></note>
|
||||
<target state="translated">Exibir o Número de Versão da CLI do .NET</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="InfoDescription">
|
||||
<source>Display .NET CLI Info</source>
|
||||
<target state="new">Display .NET CLI Info</target>
|
||||
<note></note>
|
||||
<target state="translated">Exibir Informações da CLI do .NET</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="Commands">
|
||||
<source>Commands</source>
|
||||
<target state="new">Commands</target>
|
||||
<note></note>
|
||||
<target state="translated">Comandos</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NewDefinition">
|
||||
<source>Initialize a basic .NET project</source>
|
||||
<target state="new">Initialize a basic .NET project</target>
|
||||
<note></note>
|
||||
<target state="translated">Inicializar um projeto .NET básico</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RestoreDefinition">
|
||||
<source>Restore dependencies specified in the .NET project</source>
|
||||
<target state="new">Restore dependencies specified in the.NET project</target>
|
||||
<target state="needs-review-translation">Restaurar dependências especificadas no projeto .NET</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="BuildDefinition">
|
||||
<source>Builds a .NET project</source>
|
||||
<target state="new">Builds a .NET project</target>
|
||||
<note></note>
|
||||
<target state="translated">Compila um projeto .NET</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="PublishDefinition">
|
||||
<source>Publishes a .NET project for deployment (including the runtime)</source>
|
||||
<target state="new">Publishes a .NET project for deployment (including the runtime)</target>
|
||||
<note></note>
|
||||
<target state="translated">Publica um projeto .NET para implantação (incluindo o tempo de execução)</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RunDefinition">
|
||||
<source>Compiles and immediately executes a .NET project</source>
|
||||
<target state="new">Compiles and immediately executes a.NET project</target>
|
||||
<target state="needs-review-translation">Compila e executa imediatamente um projeto .NET</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="TestDefinition">
|
||||
<source>Runs unit tests using the test runner specified in the project</source>
|
||||
<target state="new">Runs unit tests using the test runner specified in the project</target>
|
||||
<note></note>
|
||||
<target state="translated">Executa testes de unidade usando o executor de teste especificado no projeto</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="PackDefinition">
|
||||
<source>Creates a NuGet package</source>
|
||||
<target state="new">Creates a NuGet package</target>
|
||||
<note></note>
|
||||
<target state="translated">Cria um pacote NuGet</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="MigrateDefinition">
|
||||
<source>Migrates a project.json based project to a msbuild based project</source>
|
||||
<target state="new">Migrates a project.json based project to a msbuild based project</target>
|
||||
<note></note>
|
||||
<target state="translated">Migra um projeto baseado em project.json para um projeto baseado em msbuild</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectModificationCommands">
|
||||
<source>Project modification commands</source>
|
||||
<target state="new">Project modification commands</target>
|
||||
<note></note>
|
||||
<target state="translated">Comandos de modificação de projeto</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AddDefinition">
|
||||
<source>Add items to the project</source>
|
||||
<target state="new">Add items to the project</target>
|
||||
<note></note>
|
||||
<target state="translated">Adicionar itens ao projeto</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RemoveDefinition">
|
||||
<source>Remove items from the project</source>
|
||||
<target state="new">Remove items from the project</target>
|
||||
<note></note>
|
||||
<target state="translated">Remover itens do projeto</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AdvancedCommands">
|
||||
<source>Advanced Commands</source>
|
||||
<target state="new">Advanced Commands</target>
|
||||
<note></note>
|
||||
<target state="translated">Comandos Avançados</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NugetDefinition">
|
||||
<source>Provides additional NuGet commands</source>
|
||||
<target state="new">Provides additional NuGet commands</target>
|
||||
<note></note>
|
||||
<target state="translated">Fornece comandos adicionais do NuGet</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="MsBuildDefinition">
|
||||
<source>msbuilds a project and all of its dependencies</source>
|
||||
<target state="new">msbuilds a project and all of its dependencies</target>
|
||||
<note></note>
|
||||
<target state="translated">Executa o msbuild em um projeto e todas as suas dependências</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VsTestDefinition">
|
||||
<source>Runs tests from the specified files</source>
|
||||
<target state="new">Runs tests from the specified files</target>
|
||||
<note></note>
|
||||
<target state="translated">Executa testes dos arquivos especificados</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,143 +5,143 @@
|
|||
<group id="src/dotnet/commands/dotnet-help/LocalizableStrings.resx" />
|
||||
<trans-unit id="Usage">
|
||||
<source>Usage</source>
|
||||
<target state="new">Usage</target>
|
||||
<note></note>
|
||||
<target state="translated">Использование</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="Arguments">
|
||||
<source>Arguments</source>
|
||||
<target state="new">Arguments</target>
|
||||
<note></note>
|
||||
<target state="translated">Аргументы</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CommandDefinition">
|
||||
<source>The command to execute</source>
|
||||
<target state="new">The command to execute</target>
|
||||
<note></note>
|
||||
<target state="translated">Выполняемая команда</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgumentsDefinition">
|
||||
<source>Arguments to pass to the command</source>
|
||||
<target state="new">Arguments to pass to the command</target>
|
||||
<note></note>
|
||||
<target state="translated">Аргументы, передаваемые в команду</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="HostOptionsDefinition">
|
||||
<source>Options specific to dotnet (host)</source>
|
||||
<target state="new">Options specific to dotnet (host)</target>
|
||||
<note></note>
|
||||
<target state="translated">Параметры, определяемые dotnet (узлом)</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="OptionsDescription">
|
||||
<source>Options common to all commands</source>
|
||||
<target state="new">Options common to all commands</target>
|
||||
<note></note>
|
||||
<target state="translated">Параметры, общие для всех команд</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CommonOptions">
|
||||
<source>Common options</source>
|
||||
<target state="new">Common options</target>
|
||||
<note></note>
|
||||
<target state="translated">Общие параметры</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VerboseDefinition">
|
||||
<source>Enable verbose output</source>
|
||||
<target state="new">Enable verbose output</target>
|
||||
<note></note>
|
||||
<target state="translated">Включить подробные выходные данные</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="HelpDefinition">
|
||||
<source>Show help</source>
|
||||
<target state="new">Show help</target>
|
||||
<note></note>
|
||||
<target state="translated">Показать справку</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="HostOptions">
|
||||
<source>Host options (passed before the command)</source>
|
||||
<target state="new">Host options (passed before the command)</target>
|
||||
<note></note>
|
||||
<target state="translated">Параметры узла (передаваемые перед командой)</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VersionDescription">
|
||||
<source>Display .NET CLI Version Number</source>
|
||||
<target state="new">Display .NET CLI Version Number</target>
|
||||
<note></note>
|
||||
<target state="translated">Показывать номер версии .NET CLI</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="InfoDescription">
|
||||
<source>Display .NET CLI Info</source>
|
||||
<target state="new">Display .NET CLI Info</target>
|
||||
<note></note>
|
||||
<target state="translated">Показывать сведения о .NET CLI</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="Commands">
|
||||
<source>Commands</source>
|
||||
<target state="new">Commands</target>
|
||||
<note></note>
|
||||
<target state="translated">Команды</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NewDefinition">
|
||||
<source>Initialize a basic .NET project</source>
|
||||
<target state="new">Initialize a basic .NET project</target>
|
||||
<note></note>
|
||||
<target state="translated">Инициализация основного проекта .NET</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RestoreDefinition">
|
||||
<source>Restore dependencies specified in the .NET project</source>
|
||||
<target state="new">Restore dependencies specified in the.NET project</target>
|
||||
<target state="needs-review-translation">Восстановить зависимости, указанные в проекте .NET</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="BuildDefinition">
|
||||
<source>Builds a .NET project</source>
|
||||
<target state="new">Builds a .NET project</target>
|
||||
<note></note>
|
||||
<target state="translated">Сборка проекта .NET</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="PublishDefinition">
|
||||
<source>Publishes a .NET project for deployment (including the runtime)</source>
|
||||
<target state="new">Publishes a .NET project for deployment (including the runtime)</target>
|
||||
<note></note>
|
||||
<target state="translated">Публикация проекта .NET для развертывания (включая среду выполнения)</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RunDefinition">
|
||||
<source>Compiles and immediately executes a .NET project</source>
|
||||
<target state="new">Compiles and immediately executes a.NET project</target>
|
||||
<target state="needs-review-translation">Компиляция и немедленное выполнение проекта .NET</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="TestDefinition">
|
||||
<source>Runs unit tests using the test runner specified in the project</source>
|
||||
<target state="new">Runs unit tests using the test runner specified in the project</target>
|
||||
<note></note>
|
||||
<target state="translated">Выполнение тестов с помощью средства выполнения тестов, указанного в проекте</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="PackDefinition">
|
||||
<source>Creates a NuGet package</source>
|
||||
<target state="new">Creates a NuGet package</target>
|
||||
<note></note>
|
||||
<target state="translated">Создание пакета NuGet</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="MigrateDefinition">
|
||||
<source>Migrates a project.json based project to a msbuild based project</source>
|
||||
<target state="new">Migrates a project.json based project to a msbuild based project</target>
|
||||
<note></note>
|
||||
<target state="translated">Миграция проекта на основе project.json в проект на основе msbuild</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectModificationCommands">
|
||||
<source>Project modification commands</source>
|
||||
<target state="new">Project modification commands</target>
|
||||
<note></note>
|
||||
<target state="translated">Команды изменения проекта</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AddDefinition">
|
||||
<source>Add items to the project</source>
|
||||
<target state="new">Add items to the project</target>
|
||||
<note></note>
|
||||
<target state="translated">Добавить элементы в проект</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RemoveDefinition">
|
||||
<source>Remove items from the project</source>
|
||||
<target state="new">Remove items from the project</target>
|
||||
<note></note>
|
||||
<target state="translated">Удалить элементы из проекта</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AdvancedCommands">
|
||||
<source>Advanced Commands</source>
|
||||
<target state="new">Advanced Commands</target>
|
||||
<note></note>
|
||||
<target state="translated">Дополнительные команды</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NugetDefinition">
|
||||
<source>Provides additional NuGet commands</source>
|
||||
<target state="new">Provides additional NuGet commands</target>
|
||||
<note></note>
|
||||
<target state="translated">Предоставление дополнительных команд NuGet</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="MsBuildDefinition">
|
||||
<source>msbuilds a project and all of its dependencies</source>
|
||||
<target state="new">msbuilds a project and all of its dependencies</target>
|
||||
<note></note>
|
||||
<target state="translated">Выполнение сборки msbuild проекта и всех его зависимостей</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VsTestDefinition">
|
||||
<source>Runs tests from the specified files</source>
|
||||
<target state="new">Runs tests from the specified files</target>
|
||||
<note></note>
|
||||
<target state="translated">Выполнение тестов из указанных файлов</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,143 +5,143 @@
|
|||
<group id="src/dotnet/commands/dotnet-help/LocalizableStrings.resx" />
|
||||
<trans-unit id="Usage">
|
||||
<source>Usage</source>
|
||||
<target state="new">Usage</target>
|
||||
<note></note>
|
||||
<target state="translated">Kullanım</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="Arguments">
|
||||
<source>Arguments</source>
|
||||
<target state="new">Arguments</target>
|
||||
<note></note>
|
||||
<target state="translated">Bağımsız değişkenler</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CommandDefinition">
|
||||
<source>The command to execute</source>
|
||||
<target state="new">The command to execute</target>
|
||||
<note></note>
|
||||
<target state="translated">Yürütülecek komut</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgumentsDefinition">
|
||||
<source>Arguments to pass to the command</source>
|
||||
<target state="new">Arguments to pass to the command</target>
|
||||
<note></note>
|
||||
<target state="translated">Komuta geçirilecek bağımsız değişkenler</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="HostOptionsDefinition">
|
||||
<source>Options specific to dotnet (host)</source>
|
||||
<target state="new">Options specific to dotnet (host)</target>
|
||||
<note></note>
|
||||
<target state="translated">Dotnet’e özel seçenekler (konak)</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="OptionsDescription">
|
||||
<source>Options common to all commands</source>
|
||||
<target state="new">Options common to all commands</target>
|
||||
<note></note>
|
||||
<target state="translated">Tüm komutlar için ortak seçenekler</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CommonOptions">
|
||||
<source>Common options</source>
|
||||
<target state="new">Common options</target>
|
||||
<note></note>
|
||||
<target state="translated">Ortak seçenekler</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VerboseDefinition">
|
||||
<source>Enable verbose output</source>
|
||||
<target state="new">Enable verbose output</target>
|
||||
<note></note>
|
||||
<target state="translated">Ayrıntılı çıktıyı etkinleştir</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="HelpDefinition">
|
||||
<source>Show help</source>
|
||||
<target state="new">Show help</target>
|
||||
<note></note>
|
||||
<target state="translated">Yardımı göster</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="HostOptions">
|
||||
<source>Host options (passed before the command)</source>
|
||||
<target state="new">Host options (passed before the command)</target>
|
||||
<note></note>
|
||||
<target state="translated">Konak seçenekleri (komuttan önce geçirilir)</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VersionDescription">
|
||||
<source>Display .NET CLI Version Number</source>
|
||||
<target state="new">Display .NET CLI Version Number</target>
|
||||
<note></note>
|
||||
<target state="translated">.NET CLI Sürüm Numarasını Görüntüle</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="InfoDescription">
|
||||
<source>Display .NET CLI Info</source>
|
||||
<target state="new">Display .NET CLI Info</target>
|
||||
<note></note>
|
||||
<target state="translated">.NET CLI Bilgisini Görüntüle</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="Commands">
|
||||
<source>Commands</source>
|
||||
<target state="new">Commands</target>
|
||||
<note></note>
|
||||
<target state="translated">Komutlar</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NewDefinition">
|
||||
<source>Initialize a basic .NET project</source>
|
||||
<target state="new">Initialize a basic .NET project</target>
|
||||
<note></note>
|
||||
<target state="translated">Temel bir .NET projesi başlatır</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RestoreDefinition">
|
||||
<source>Restore dependencies specified in the .NET project</source>
|
||||
<target state="new">Restore dependencies specified in the.NET project</target>
|
||||
<target state="needs-review-translation">.NET projesinde belirtilen bağımlılıkları geri yükler</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="BuildDefinition">
|
||||
<source>Builds a .NET project</source>
|
||||
<target state="new">Builds a .NET project</target>
|
||||
<note></note>
|
||||
<target state="translated">.NET projesi derler</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="PublishDefinition">
|
||||
<source>Publishes a .NET project for deployment (including the runtime)</source>
|
||||
<target state="new">Publishes a .NET project for deployment (including the runtime)</target>
|
||||
<note></note>
|
||||
<target state="translated">Dağıtım için bir .NET projesi yayımlar (çalışma zamanı dahil)</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RunDefinition">
|
||||
<source>Compiles and immediately executes a .NET project</source>
|
||||
<target state="new">Compiles and immediately executes a.NET project</target>
|
||||
<target state="needs-review-translation">Bir .NET projesini derler ve hemen yürütür</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="TestDefinition">
|
||||
<source>Runs unit tests using the test runner specified in the project</source>
|
||||
<target state="new">Runs unit tests using the test runner specified in the project</target>
|
||||
<note></note>
|
||||
<target state="translated">Projede belirtilen test çalıştırıcısını kullanarak birim testleri çalıştırır</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="PackDefinition">
|
||||
<source>Creates a NuGet package</source>
|
||||
<target state="new">Creates a NuGet package</target>
|
||||
<note></note>
|
||||
<target state="translated">NuGet paketi oluşturur</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="MigrateDefinition">
|
||||
<source>Migrates a project.json based project to a msbuild based project</source>
|
||||
<target state="new">Migrates a project.json based project to a msbuild based project</target>
|
||||
<note></note>
|
||||
<target state="translated">project.json tabanlı bir projeyi msbuild tabanlı bir projeye geçirir</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectModificationCommands">
|
||||
<source>Project modification commands</source>
|
||||
<target state="new">Project modification commands</target>
|
||||
<note></note>
|
||||
<target state="translated">Projede değişiklik komutları</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AddDefinition">
|
||||
<source>Add items to the project</source>
|
||||
<target state="new">Add items to the project</target>
|
||||
<note></note>
|
||||
<target state="translated">Projeye öğe ekler</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RemoveDefinition">
|
||||
<source>Remove items from the project</source>
|
||||
<target state="new">Remove items from the project</target>
|
||||
<note></note>
|
||||
<target state="translated">Projeden öğeleri kaldırır</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AdvancedCommands">
|
||||
<source>Advanced Commands</source>
|
||||
<target state="new">Advanced Commands</target>
|
||||
<note></note>
|
||||
<target state="translated">Gelişmiş Komutlar</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NugetDefinition">
|
||||
<source>Provides additional NuGet commands</source>
|
||||
<target state="new">Provides additional NuGet commands</target>
|
||||
<note></note>
|
||||
<target state="translated">Ek NuGet komutları sağlar</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="MsBuildDefinition">
|
||||
<source>msbuilds a project and all of its dependencies</source>
|
||||
<target state="new">msbuilds a project and all of its dependencies</target>
|
||||
<note></note>
|
||||
<target state="translated">Bir projeyi ve tüm bağımlılıklarını msbuild ile derler</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VsTestDefinition">
|
||||
<source>Runs tests from the specified files</source>
|
||||
<target state="new">Runs tests from the specified files</target>
|
||||
<note></note>
|
||||
<target state="translated">Belirtilen dosyalardan testleri çalıştırır</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,59 +5,59 @@
|
|||
<group id="src/dotnet/commands/dotnet-help/LocalizableStrings.resx" />
|
||||
<trans-unit id="Usage">
|
||||
<source>Usage</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="Arguments">
|
||||
<source>Arguments</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CommandDefinition">
|
||||
<source>The command to execute</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgumentsDefinition">
|
||||
<source>Arguments to pass to the command</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="HostOptionsDefinition">
|
||||
<source>Options specific to dotnet (host)</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="OptionsDescription">
|
||||
<source>Options common to all commands</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CommonOptions">
|
||||
<source>Common options</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VerboseDefinition">
|
||||
<source>Enable verbose output</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="HelpDefinition">
|
||||
<source>Show help</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="HostOptions">
|
||||
<source>Host options (passed before the command)</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VersionDescription">
|
||||
<source>Display .NET CLI Version Number</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="InfoDescription">
|
||||
<source>Display .NET CLI Info</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="Commands">
|
||||
<source>Commands</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NewDefinition">
|
||||
<source>Initialize a basic .NET project</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RestoreDefinition">
|
||||
<source>Restore dependencies specified in the .NET project</source>
|
||||
|
@ -65,11 +65,11 @@
|
|||
</trans-unit>
|
||||
<trans-unit id="BuildDefinition">
|
||||
<source>Builds a .NET project</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="PublishDefinition">
|
||||
<source>Publishes a .NET project for deployment (including the runtime)</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RunDefinition">
|
||||
<source>Compiles and immediately executes a .NET project</source>
|
||||
|
@ -77,43 +77,43 @@
|
|||
</trans-unit>
|
||||
<trans-unit id="TestDefinition">
|
||||
<source>Runs unit tests using the test runner specified in the project</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="PackDefinition">
|
||||
<source>Creates a NuGet package</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="MigrateDefinition">
|
||||
<source>Migrates a project.json based project to a msbuild based project</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectModificationCommands">
|
||||
<source>Project modification commands</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AddDefinition">
|
||||
<source>Add items to the project</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RemoveDefinition">
|
||||
<source>Remove items from the project</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AdvancedCommands">
|
||||
<source>Advanced Commands</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NugetDefinition">
|
||||
<source>Provides additional NuGet commands</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="MsBuildDefinition">
|
||||
<source>msbuilds a project and all of its dependencies</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VsTestDefinition">
|
||||
<source>Runs tests from the specified files</source>
|
||||
<note></note>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,143 +5,143 @@
|
|||
<group id="src/dotnet/commands/dotnet-help/LocalizableStrings.resx" />
|
||||
<trans-unit id="Usage">
|
||||
<source>Usage</source>
|
||||
<target state="new">Usage</target>
|
||||
<note></note>
|
||||
<target state="translated">使用情况</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="Arguments">
|
||||
<source>Arguments</source>
|
||||
<target state="new">Arguments</target>
|
||||
<note></note>
|
||||
<target state="translated">Arguments</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CommandDefinition">
|
||||
<source>The command to execute</source>
|
||||
<target state="new">The command to execute</target>
|
||||
<note></note>
|
||||
<target state="translated">要执行的命令</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgumentsDefinition">
|
||||
<source>Arguments to pass to the command</source>
|
||||
<target state="new">Arguments to pass to the command</target>
|
||||
<note></note>
|
||||
<target state="translated">要传递给命令的参数</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="HostOptionsDefinition">
|
||||
<source>Options specific to dotnet (host)</source>
|
||||
<target state="new">Options specific to dotnet (host)</target>
|
||||
<note></note>
|
||||
<target state="translated">特定于 dotnet (主机)的选项</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="OptionsDescription">
|
||||
<source>Options common to all commands</source>
|
||||
<target state="new">Options common to all commands</target>
|
||||
<note></note>
|
||||
<target state="translated">所有命令的常用选项</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CommonOptions">
|
||||
<source>Common options</source>
|
||||
<target state="new">Common options</target>
|
||||
<note></note>
|
||||
<target state="translated">常用选项</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VerboseDefinition">
|
||||
<source>Enable verbose output</source>
|
||||
<target state="new">Enable verbose output</target>
|
||||
<note></note>
|
||||
<target state="translated">启用详细输出</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="HelpDefinition">
|
||||
<source>Show help</source>
|
||||
<target state="new">Show help</target>
|
||||
<note></note>
|
||||
<target state="translated">显示帮助</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="HostOptions">
|
||||
<source>Host options (passed before the command)</source>
|
||||
<target state="new">Host options (passed before the command)</target>
|
||||
<note></note>
|
||||
<target state="translated">主机选项(在命令之前传递)</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VersionDescription">
|
||||
<source>Display .NET CLI Version Number</source>
|
||||
<target state="new">Display .NET CLI Version Number</target>
|
||||
<note></note>
|
||||
<target state="translated">显示 .NET CLI 版本号</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="InfoDescription">
|
||||
<source>Display .NET CLI Info</source>
|
||||
<target state="new">Display .NET CLI Info</target>
|
||||
<note></note>
|
||||
<target state="translated">显示.NET CLI 信息</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="Commands">
|
||||
<source>Commands</source>
|
||||
<target state="new">Commands</target>
|
||||
<note></note>
|
||||
<target state="translated">命令</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NewDefinition">
|
||||
<source>Initialize a basic .NET project</source>
|
||||
<target state="new">Initialize a basic .NET project</target>
|
||||
<note></note>
|
||||
<target state="translated">初始化基础 .NET 项目</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RestoreDefinition">
|
||||
<source>Restore dependencies specified in the .NET project</source>
|
||||
<target state="new">Restore dependencies specified in the.NET project</target>
|
||||
<target state="needs-review-translation">还原 .NET 项目中指定的依赖项</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="BuildDefinition">
|
||||
<source>Builds a .NET project</source>
|
||||
<target state="new">Builds a .NET project</target>
|
||||
<note></note>
|
||||
<target state="translated">生成 .NET 项目</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="PublishDefinition">
|
||||
<source>Publishes a .NET project for deployment (including the runtime)</source>
|
||||
<target state="new">Publishes a .NET project for deployment (including the runtime)</target>
|
||||
<note></note>
|
||||
<target state="translated">发布 .NET 项目以进行部署(包括运行时)</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RunDefinition">
|
||||
<source>Compiles and immediately executes a .NET project</source>
|
||||
<target state="new">Compiles and immediately executes a.NET project</target>
|
||||
<target state="needs-review-translation">编译并立即执行 .NET 项目</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="TestDefinition">
|
||||
<source>Runs unit tests using the test runner specified in the project</source>
|
||||
<target state="new">Runs unit tests using the test runner specified in the project</target>
|
||||
<note></note>
|
||||
<target state="translated">使用项目中指定的测试运行程序运行单元测试</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="PackDefinition">
|
||||
<source>Creates a NuGet package</source>
|
||||
<target state="new">Creates a NuGet package</target>
|
||||
<note></note>
|
||||
<target state="translated">创建 NuGet 包</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="MigrateDefinition">
|
||||
<source>Migrates a project.json based project to a msbuild based project</source>
|
||||
<target state="new">Migrates a project.json based project to a msbuild based project</target>
|
||||
<note></note>
|
||||
<target state="translated">将基于 project.json 的项目迁移到基于 MSBuild 的项目</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectModificationCommands">
|
||||
<source>Project modification commands</source>
|
||||
<target state="new">Project modification commands</target>
|
||||
<note></note>
|
||||
<target state="translated">项目修改命令</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AddDefinition">
|
||||
<source>Add items to the project</source>
|
||||
<target state="new">Add items to the project</target>
|
||||
<note></note>
|
||||
<target state="translated">将项添加到项目中</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RemoveDefinition">
|
||||
<source>Remove items from the project</source>
|
||||
<target state="new">Remove items from the project</target>
|
||||
<note></note>
|
||||
<target state="translated">从项目中删除项</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AdvancedCommands">
|
||||
<source>Advanced Commands</source>
|
||||
<target state="new">Advanced Commands</target>
|
||||
<note></note>
|
||||
<target state="translated">高级命令</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NugetDefinition">
|
||||
<source>Provides additional NuGet commands</source>
|
||||
<target state="new">Provides additional NuGet commands</target>
|
||||
<note></note>
|
||||
<target state="translated">提供其他 NuGet命令</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="MsBuildDefinition">
|
||||
<source>msbuilds a project and all of its dependencies</source>
|
||||
<target state="new">msbuilds a project and all of its dependencies</target>
|
||||
<note></note>
|
||||
<target state="translated">通过 MSBuild 生成一个项目以及该项目的所有依赖项</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VsTestDefinition">
|
||||
<source>Runs tests from the specified files</source>
|
||||
<target state="new">Runs tests from the specified files</target>
|
||||
<note></note>
|
||||
<target state="translated">从指定的文件运行测试</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -5,143 +5,143 @@
|
|||
<group id="src/dotnet/commands/dotnet-help/LocalizableStrings.resx" />
|
||||
<trans-unit id="Usage">
|
||||
<source>Usage</source>
|
||||
<target state="new">Usage</target>
|
||||
<note></note>
|
||||
<target state="translated">使用方式</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="Arguments">
|
||||
<source>Arguments</source>
|
||||
<target state="new">Arguments</target>
|
||||
<note></note>
|
||||
<target state="translated">Arguments</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CommandDefinition">
|
||||
<source>The command to execute</source>
|
||||
<target state="new">The command to execute</target>
|
||||
<note></note>
|
||||
<target state="translated">要執行的命令</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ArgumentsDefinition">
|
||||
<source>Arguments to pass to the command</source>
|
||||
<target state="new">Arguments to pass to the command</target>
|
||||
<note></note>
|
||||
<target state="translated">要傳遞到命令的引數</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="HostOptionsDefinition">
|
||||
<source>Options specific to dotnet (host)</source>
|
||||
<target state="new">Options specific to dotnet (host)</target>
|
||||
<note></note>
|
||||
<target state="translated">dotnet (host) 專用選項</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="OptionsDescription">
|
||||
<source>Options common to all commands</source>
|
||||
<target state="new">Options common to all commands</target>
|
||||
<note></note>
|
||||
<target state="translated">所有命令通用的選項</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="CommonOptions">
|
||||
<source>Common options</source>
|
||||
<target state="new">Common options</target>
|
||||
<note></note>
|
||||
<target state="translated">通用選項</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VerboseDefinition">
|
||||
<source>Enable verbose output</source>
|
||||
<target state="new">Enable verbose output</target>
|
||||
<note></note>
|
||||
<target state="translated">啟用詳細資訊輸出</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="HelpDefinition">
|
||||
<source>Show help</source>
|
||||
<target state="new">Show help</target>
|
||||
<note></note>
|
||||
<target state="translated">顯示說明</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="HostOptions">
|
||||
<source>Host options (passed before the command)</source>
|
||||
<target state="new">Host options (passed before the command)</target>
|
||||
<note></note>
|
||||
<target state="translated">裝載選項 (在命令之前傳遞)</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VersionDescription">
|
||||
<source>Display .NET CLI Version Number</source>
|
||||
<target state="new">Display .NET CLI Version Number</target>
|
||||
<note></note>
|
||||
<target state="translated">顯示 .NET CLI 版本號碼</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="InfoDescription">
|
||||
<source>Display .NET CLI Info</source>
|
||||
<target state="new">Display .NET CLI Info</target>
|
||||
<note></note>
|
||||
<target state="translated">顯示 .NET CLI 資訊</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="Commands">
|
||||
<source>Commands</source>
|
||||
<target state="new">Commands</target>
|
||||
<note></note>
|
||||
<target state="translated">命令</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NewDefinition">
|
||||
<source>Initialize a basic .NET project</source>
|
||||
<target state="new">Initialize a basic .NET project</target>
|
||||
<note></note>
|
||||
<target state="translated">將基本 .NET 專案初始化</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RestoreDefinition">
|
||||
<source>Restore dependencies specified in the .NET project</source>
|
||||
<target state="new">Restore dependencies specified in the.NET project</target>
|
||||
<target state="needs-review-translation">還原 .NET 專案中指定的相依性</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="BuildDefinition">
|
||||
<source>Builds a .NET project</source>
|
||||
<target state="new">Builds a .NET project</target>
|
||||
<note></note>
|
||||
<target state="translated">建置 .NET 專案</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="PublishDefinition">
|
||||
<source>Publishes a .NET project for deployment (including the runtime)</source>
|
||||
<target state="new">Publishes a .NET project for deployment (including the runtime)</target>
|
||||
<note></note>
|
||||
<target state="translated">發行用於部署的 .NET 專案 (包括執行階段)</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RunDefinition">
|
||||
<source>Compiles and immediately executes a .NET project</source>
|
||||
<target state="new">Compiles and immediately executes a.NET project</target>
|
||||
<target state="needs-review-translation">編譯並立即執行 .NET 專案</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="TestDefinition">
|
||||
<source>Runs unit tests using the test runner specified in the project</source>
|
||||
<target state="new">Runs unit tests using the test runner specified in the project</target>
|
||||
<note></note>
|
||||
<target state="translated">使用專案中指定的測試執行器來執行單元測試</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="PackDefinition">
|
||||
<source>Creates a NuGet package</source>
|
||||
<target state="new">Creates a NuGet package</target>
|
||||
<note></note>
|
||||
<target state="translated">建立 NuGet 套件</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="MigrateDefinition">
|
||||
<source>Migrates a project.json based project to a msbuild based project</source>
|
||||
<target state="new">Migrates a project.json based project to a msbuild based project</target>
|
||||
<note></note>
|
||||
<target state="translated">將 project.json 專案移轉到 MSBuild 專案</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="ProjectModificationCommands">
|
||||
<source>Project modification commands</source>
|
||||
<target state="new">Project modification commands</target>
|
||||
<note></note>
|
||||
<target state="translated">專案修改命令</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AddDefinition">
|
||||
<source>Add items to the project</source>
|
||||
<target state="new">Add items to the project</target>
|
||||
<note></note>
|
||||
<target state="translated">將項目新增至專案</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="RemoveDefinition">
|
||||
<source>Remove items from the project</source>
|
||||
<target state="new">Remove items from the project</target>
|
||||
<note></note>
|
||||
<target state="translated">從專案中移除項目</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="AdvancedCommands">
|
||||
<source>Advanced Commands</source>
|
||||
<target state="new">Advanced Commands</target>
|
||||
<note></note>
|
||||
<target state="translated">進階命令</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="NugetDefinition">
|
||||
<source>Provides additional NuGet commands</source>
|
||||
<target state="new">Provides additional NuGet commands</target>
|
||||
<note></note>
|
||||
<target state="translated">提供其他 NuGet 命令</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="MsBuildDefinition">
|
||||
<source>msbuilds a project and all of its dependencies</source>
|
||||
<target state="new">msbuilds a project and all of its dependencies</target>
|
||||
<note></note>
|
||||
<target state="translated">對專案及其所有相依性執行 MSBuild</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
<trans-unit id="VsTestDefinition">
|
||||
<source>Runs tests from the specified files</source>
|
||||
<target state="new">Runs tests from the specified files</target>
|
||||
<note></note>
|
||||
<target state="translated">從指定的檔案執行測試</target>
|
||||
<note />
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
|
|
@ -0,0 +1,25 @@
|
|||
<?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="src/dotnet/commands/dotnet-list/dotnet-list-p2ps/LocalizableStrings.resx">
|
||||
<body>
|
||||
<group id="src/dotnet/commands/dotnet-list/dotnet-list-p2ps/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Core Project-to-Project dependency viewer</source>
|
||||
<target state="new">.NET Core Project-to-Project dependency viewer</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to list project to project (p2p) references</source>
|
||||
<target state="new">Command to list project to project (p2p) references</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="NoReferencesFound">
|
||||
<source>There are no {0} references in project {1}.
|
||||
{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). </source>
|
||||
<target state="new">There are no {0} references in project {1}.
|
||||
{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). </target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
|
@ -0,0 +1,25 @@
|
|||
<?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="src/dotnet/commands/dotnet-list/dotnet-list-p2ps/LocalizableStrings.resx">
|
||||
<body>
|
||||
<group id="src/dotnet/commands/dotnet-list/dotnet-list-p2ps/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Core Project-to-Project dependency viewer</source>
|
||||
<target state="new">.NET Core Project-to-Project dependency viewer</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to list project to project (p2p) references</source>
|
||||
<target state="new">Command to list project to project (p2p) references</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="NoReferencesFound">
|
||||
<source>There are no {0} references in project {1}.
|
||||
{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). </source>
|
||||
<target state="new">There are no {0} references in project {1}.
|
||||
{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). </target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
|
@ -0,0 +1,25 @@
|
|||
<?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="src/dotnet/commands/dotnet-list/dotnet-list-p2ps/LocalizableStrings.resx">
|
||||
<body>
|
||||
<group id="src/dotnet/commands/dotnet-list/dotnet-list-p2ps/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Core Project-to-Project dependency viewer</source>
|
||||
<target state="new">.NET Core Project-to-Project dependency viewer</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to list project to project (p2p) references</source>
|
||||
<target state="new">Command to list project to project (p2p) references</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="NoReferencesFound">
|
||||
<source>There are no {0} references in project {1}.
|
||||
{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). </source>
|
||||
<target state="new">There are no {0} references in project {1}.
|
||||
{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). </target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
|
@ -0,0 +1,25 @@
|
|||
<?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="src/dotnet/commands/dotnet-list/dotnet-list-p2ps/LocalizableStrings.resx">
|
||||
<body>
|
||||
<group id="src/dotnet/commands/dotnet-list/dotnet-list-p2ps/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Core Project-to-Project dependency viewer</source>
|
||||
<target state="new">.NET Core Project-to-Project dependency viewer</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to list project to project (p2p) references</source>
|
||||
<target state="new">Command to list project to project (p2p) references</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="NoReferencesFound">
|
||||
<source>There are no {0} references in project {1}.
|
||||
{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). </source>
|
||||
<target state="new">There are no {0} references in project {1}.
|
||||
{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). </target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
|
@ -0,0 +1,25 @@
|
|||
<?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="src/dotnet/commands/dotnet-list/dotnet-list-p2ps/LocalizableStrings.resx">
|
||||
<body>
|
||||
<group id="src/dotnet/commands/dotnet-list/dotnet-list-p2ps/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Core Project-to-Project dependency viewer</source>
|
||||
<target state="new">.NET Core Project-to-Project dependency viewer</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to list project to project (p2p) references</source>
|
||||
<target state="new">Command to list project to project (p2p) references</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="NoReferencesFound">
|
||||
<source>There are no {0} references in project {1}.
|
||||
{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). </source>
|
||||
<target state="new">There are no {0} references in project {1}.
|
||||
{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). </target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
|
@ -0,0 +1,25 @@
|
|||
<?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="src/dotnet/commands/dotnet-list/dotnet-list-p2ps/LocalizableStrings.resx">
|
||||
<body>
|
||||
<group id="src/dotnet/commands/dotnet-list/dotnet-list-p2ps/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Core Project-to-Project dependency viewer</source>
|
||||
<target state="new">.NET Core Project-to-Project dependency viewer</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to list project to project (p2p) references</source>
|
||||
<target state="new">Command to list project to project (p2p) references</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="NoReferencesFound">
|
||||
<source>There are no {0} references in project {1}.
|
||||
{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). </source>
|
||||
<target state="new">There are no {0} references in project {1}.
|
||||
{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). </target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
|
@ -0,0 +1,25 @@
|
|||
<?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="src/dotnet/commands/dotnet-list/dotnet-list-p2ps/LocalizableStrings.resx">
|
||||
<body>
|
||||
<group id="src/dotnet/commands/dotnet-list/dotnet-list-p2ps/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Core Project-to-Project dependency viewer</source>
|
||||
<target state="new">.NET Core Project-to-Project dependency viewer</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to list project to project (p2p) references</source>
|
||||
<target state="new">Command to list project to project (p2p) references</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="NoReferencesFound">
|
||||
<source>There are no {0} references in project {1}.
|
||||
{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). </source>
|
||||
<target state="new">There are no {0} references in project {1}.
|
||||
{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). </target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
|
@ -0,0 +1,25 @@
|
|||
<?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="src/dotnet/commands/dotnet-list/dotnet-list-p2ps/LocalizableStrings.resx">
|
||||
<body>
|
||||
<group id="src/dotnet/commands/dotnet-list/dotnet-list-p2ps/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Core Project-to-Project dependency viewer</source>
|
||||
<target state="new">.NET Core Project-to-Project dependency viewer</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to list project to project (p2p) references</source>
|
||||
<target state="new">Command to list project to project (p2p) references</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="NoReferencesFound">
|
||||
<source>There are no {0} references in project {1}.
|
||||
{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). </source>
|
||||
<target state="new">There are no {0} references in project {1}.
|
||||
{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). </target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
|
@ -0,0 +1,25 @@
|
|||
<?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="src/dotnet/commands/dotnet-list/dotnet-list-p2ps/LocalizableStrings.resx">
|
||||
<body>
|
||||
<group id="src/dotnet/commands/dotnet-list/dotnet-list-p2ps/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Core Project-to-Project dependency viewer</source>
|
||||
<target state="new">.NET Core Project-to-Project dependency viewer</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to list project to project (p2p) references</source>
|
||||
<target state="new">Command to list project to project (p2p) references</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="NoReferencesFound">
|
||||
<source>There are no {0} references in project {1}.
|
||||
{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). </source>
|
||||
<target state="new">There are no {0} references in project {1}.
|
||||
{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). </target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
|
@ -0,0 +1,25 @@
|
|||
<?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="src/dotnet/commands/dotnet-list/dotnet-list-p2ps/LocalizableStrings.resx">
|
||||
<body>
|
||||
<group id="src/dotnet/commands/dotnet-list/dotnet-list-p2ps/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Core Project-to-Project dependency viewer</source>
|
||||
<target state="new">.NET Core Project-to-Project dependency viewer</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to list project to project (p2p) references</source>
|
||||
<target state="new">Command to list project to project (p2p) references</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="NoReferencesFound">
|
||||
<source>There are no {0} references in project {1}.
|
||||
{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). </source>
|
||||
<target state="new">There are no {0} references in project {1}.
|
||||
{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). </target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
|
@ -0,0 +1,25 @@
|
|||
<?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="src/dotnet/commands/dotnet-list/dotnet-list-p2ps/LocalizableStrings.resx">
|
||||
<body>
|
||||
<group id="src/dotnet/commands/dotnet-list/dotnet-list-p2ps/LocalizableStrings.resx" />
|
||||
<trans-unit id="AppFullName">
|
||||
<source>.NET Core Project-to-Project dependency viewer</source>
|
||||
<target state="new">.NET Core Project-to-Project dependency viewer</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AppDescription">
|
||||
<source>Command to list project to project (p2p) references</source>
|
||||
<target state="new">Command to list project to project (p2p) references</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="NoReferencesFound">
|
||||
<source>There are no {0} references in project {1}.
|
||||
{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). </source>
|
||||
<target state="new">There are no {0} references in project {1}.
|
||||
{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). </target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue