Refactor install command localizable strings.
This commit moves the `tool` subcommand strings into its own resource file, rather than putting them into the `install` command's resource file. This better follows the patterns of other commands, such as `add`, and enables subcommands to isolate their string resources from one another. As part of this commit, the `install tool` string resources were cleaned up.
This commit is contained in:
parent
f6695f7e6b
commit
2c03ff9bcf
33 changed files with 1524 additions and 1245 deletions
|
@ -11,7 +11,8 @@ namespace Microsoft.DotNet.Cli
|
||||||
public static Command Install()
|
public static Command Install()
|
||||||
{
|
{
|
||||||
return Create.Command(
|
return Create.Command(
|
||||||
"install", LocalizableStrings.InstallCommandDefinition,
|
"install",
|
||||||
|
LocalizableStrings.CommandDescription,
|
||||||
Accept.NoArguments(),
|
Accept.NoArguments(),
|
||||||
CommonOptions.HelpOption(),
|
CommonOptions.HelpOption(),
|
||||||
InstallToolCommandParser.InstallTool());
|
InstallToolCommandParser.InstallTool());
|
||||||
|
|
|
@ -117,59 +117,10 @@
|
||||||
<resheader name="writer">
|
<resheader name="writer">
|
||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<data name="SourceOptionDescription" xml:space="preserve">
|
|
||||||
<value>Specifies a NuGet package source to use during installation.</value>
|
|
||||||
</data>
|
|
||||||
<data name="SourceOptionName" xml:space="preserve">
|
|
||||||
<value>SOURCE</value>
|
|
||||||
</data>
|
|
||||||
<data name="FailedToAddPackage" xml:space="preserve">
|
|
||||||
<value>Failed to add package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</value>
|
|
||||||
</data>
|
|
||||||
<data name="FailedToRestorePackage" xml:space="preserve">
|
|
||||||
<value>Failed to restore package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</value>
|
|
||||||
</data>
|
|
||||||
<data name="InstallationSucceeded" xml:space="preserve">
|
|
||||||
<value>
|
|
||||||
The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0}</value>
|
|
||||||
</data>
|
|
||||||
<data name="InstallCommandDefinition" xml:space="preserve">
|
|
||||||
<value>Add item to development environment.</value>
|
|
||||||
</data>
|
|
||||||
<data name="InstallFailedNuget" xml:space="preserve">
|
|
||||||
<value>Install failed. Failed to download package:
|
|
||||||
NuGet returned:
|
|
||||||
|
|
||||||
{0}</value>
|
|
||||||
</data>
|
|
||||||
<data name="InstallFailedPackage" xml:space="preserve">
|
|
||||||
<value>Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
|
||||||
The error was:
|
|
||||||
|
|
||||||
{0}</value>
|
|
||||||
</data>
|
|
||||||
<data name="InstallFullCommandNameLocalized" xml:space="preserve">
|
<data name="InstallFullCommandNameLocalized" xml:space="preserve">
|
||||||
<value>NetInstallCommand</value>
|
<value>.NET Install Command</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="InstallToolCommandDefinition" xml:space="preserve">
|
<data name="CommandDescription" xml:space="preserve">
|
||||||
<value>Install tool for use on the command line.</value>
|
<value>Installs an item into the development environment.</value>
|
||||||
</data>
|
|
||||||
<data name="InstallToolConfigfileDefinition" xml:space="preserve">
|
|
||||||
<value>NuGet configuration file</value>
|
|
||||||
</data>
|
|
||||||
<data name="InstallToolFrameworkDefinition" xml:space="preserve">
|
|
||||||
<value>Target framework to publish for. The target framework has to be specified in the project file.</value>
|
|
||||||
</data>
|
|
||||||
<data name="InstallToolPackageIdDefinition" xml:space="preserve">
|
|
||||||
<value>Package Id in NuGet</value>
|
|
||||||
</data>
|
|
||||||
<data name="InstallToolVersionDefinition" xml:space="preserve">
|
|
||||||
<value>Version of the package in NuGet</value>
|
|
||||||
</data>
|
</data>
|
||||||
</root>
|
</root>
|
|
@ -2,7 +2,7 @@
|
||||||
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
||||||
|
|
||||||
using Microsoft.DotNet.Cli.CommandLine;
|
using Microsoft.DotNet.Cli.CommandLine;
|
||||||
using LocalizableStrings = Microsoft.DotNet.Tools.Install.LocalizableStrings;
|
using LocalizableStrings = Microsoft.DotNet.Tools.Install.Tool.LocalizableStrings;
|
||||||
|
|
||||||
namespace Microsoft.DotNet.Cli
|
namespace Microsoft.DotNet.Cli
|
||||||
{
|
{
|
||||||
|
@ -11,17 +11,17 @@ namespace Microsoft.DotNet.Cli
|
||||||
public static Command InstallTool()
|
public static Command InstallTool()
|
||||||
{
|
{
|
||||||
return Create.Command("tool",
|
return Create.Command("tool",
|
||||||
LocalizableStrings.InstallToolCommandDefinition,
|
LocalizableStrings.CommandDescription,
|
||||||
Accept.ExactlyOneArgument(o => "packageId")
|
Accept.ExactlyOneArgument(o => "packageId")
|
||||||
.With(name: "packageId",
|
.With(name: LocalizableStrings.PackageIdArgumentName,
|
||||||
description: LocalizableStrings.InstallToolPackageIdDefinition),
|
description: LocalizableStrings.PackageIdArgumentDescription),
|
||||||
Create.Option(
|
Create.Option(
|
||||||
"--version",
|
"--version",
|
||||||
LocalizableStrings.InstallToolVersionDefinition,
|
LocalizableStrings.VersionOptionDescription,
|
||||||
Accept.ExactlyOneArgument()),
|
Accept.ExactlyOneArgument()),
|
||||||
Create.Option(
|
Create.Option(
|
||||||
"--configfile",
|
"--configfile",
|
||||||
LocalizableStrings.InstallToolConfigfileDefinition,
|
LocalizableStrings.ConfigFileOptionDescription,
|
||||||
Accept.ExactlyOneArgument()),
|
Accept.ExactlyOneArgument()),
|
||||||
Create.Option(
|
Create.Option(
|
||||||
"--source",
|
"--source",
|
||||||
|
@ -30,7 +30,7 @@ namespace Microsoft.DotNet.Cli
|
||||||
.With(name: LocalizableStrings.SourceOptionName)),
|
.With(name: LocalizableStrings.SourceOptionName)),
|
||||||
Create.Option(
|
Create.Option(
|
||||||
"-f|--framework",
|
"-f|--framework",
|
||||||
LocalizableStrings.InstallToolFrameworkDefinition,
|
LocalizableStrings.FrameworkOptionDescription,
|
||||||
Accept.ExactlyOneArgument()),
|
Accept.ExactlyOneArgument()),
|
||||||
CommonOptions.HelpOption());
|
CommonOptions.HelpOption());
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,172 @@
|
||||||
|
<?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="PackageIdArgumentName" xml:space="preserve">
|
||||||
|
<value>PACKAGE_ID</value>
|
||||||
|
</data>
|
||||||
|
<data name="PackageIdArgumentDescription" xml:space="preserve">
|
||||||
|
<value>NuGet Package Id of the tool to install.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VersionOptionDescription" xml:space="preserve">
|
||||||
|
<value>Version of the tool package in NuGet.</value>
|
||||||
|
</data>
|
||||||
|
<data name="SourceOptionDescription" xml:space="preserve">
|
||||||
|
<value>Specifies a NuGet package source to use during installation.</value>
|
||||||
|
</data>
|
||||||
|
<data name="SourceOptionName" xml:space="preserve">
|
||||||
|
<value>SOURCE</value>
|
||||||
|
</data>
|
||||||
|
<data name="CommandDescription" xml:space="preserve">
|
||||||
|
<value>Installs a tool for use on the command line.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ConfigFileOptionDescription" xml:space="preserve">
|
||||||
|
<value>The NuGet configuration file to use.</value>
|
||||||
|
</data>
|
||||||
|
<data name="FrameworkOptionDescription" xml:space="preserve">
|
||||||
|
<value>The target framework to install the tool for.</value>
|
||||||
|
</data>
|
||||||
|
<data name="FailedToAddPackage" xml:space="preserve">
|
||||||
|
<value>Failed to add package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</value>
|
||||||
|
</data>
|
||||||
|
<data name="FailedToRestorePackage" xml:space="preserve">
|
||||||
|
<value>Failed to restore package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</value>
|
||||||
|
</data>
|
||||||
|
<data name="InstallFailedNuget" xml:space="preserve">
|
||||||
|
<value>Install failed. Failed to download package:
|
||||||
|
NuGet returned:
|
||||||
|
|
||||||
|
{0}</value>
|
||||||
|
</data>
|
||||||
|
<data name="InstallFailedPackage" xml:space="preserve">
|
||||||
|
<value>Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
||||||
|
The error was:
|
||||||
|
|
||||||
|
{0}</value>
|
||||||
|
</data>
|
||||||
|
<data name="InstallationSucceeded" xml:space="preserve">
|
||||||
|
<value>
|
||||||
|
The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0}</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
|
@ -7,7 +7,6 @@ using Microsoft.DotNet.Cli;
|
||||||
using Microsoft.DotNet.ToolPackage;
|
using Microsoft.DotNet.ToolPackage;
|
||||||
using Microsoft.DotNet.Tools;
|
using Microsoft.DotNet.Tools;
|
||||||
using Microsoft.Extensions.EnvironmentAbstractions;
|
using Microsoft.Extensions.EnvironmentAbstractions;
|
||||||
using LocalizableStrings = Microsoft.DotNet.Tools.Install.LocalizableStrings;
|
|
||||||
|
|
||||||
namespace Microsoft.DotNet.Tools.Install.Tool
|
namespace Microsoft.DotNet.Tools.Install.Tool
|
||||||
{
|
{
|
||||||
|
|
|
@ -9,7 +9,6 @@ using Microsoft.DotNet.Tools;
|
||||||
using Microsoft.DotNet.ToolPackage;
|
using Microsoft.DotNet.ToolPackage;
|
||||||
using Microsoft.DotNet.PlatformAbstractions;
|
using Microsoft.DotNet.PlatformAbstractions;
|
||||||
using Microsoft.Extensions.EnvironmentAbstractions;
|
using Microsoft.Extensions.EnvironmentAbstractions;
|
||||||
using LocalizableStrings = Microsoft.DotNet.Tools.Install.LocalizableStrings;
|
|
||||||
|
|
||||||
namespace Microsoft.DotNet.Tools.Install.Tool
|
namespace Microsoft.DotNet.Tools.Install.Tool
|
||||||
{
|
{
|
||||||
|
|
|
@ -0,0 +1,98 @@
|
||||||
|
<?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="../LocalizableStrings.resx">
|
||||||
|
<body>
|
||||||
|
<trans-unit id="SourceOptionDescription">
|
||||||
|
<source>Specifies a NuGet package source to use during installation.</source>
|
||||||
|
<target state="new">Specifies a NuGet package source to use during installation.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="SourceOptionName">
|
||||||
|
<source>SOURCE</source>
|
||||||
|
<target state="new">SOURCE</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="InstallationSucceeded">
|
||||||
|
<source>
|
||||||
|
The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0}</source>
|
||||||
|
<target state="new">
|
||||||
|
The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="FailedToAddPackage">
|
||||||
|
<source>Failed to add package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</source>
|
||||||
|
<target state="new">Failed to add package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="FailedToRestorePackage">
|
||||||
|
<source>Failed to restore package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</source>
|
||||||
|
<target state="new">Failed to restore package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="InstallFailedNuget">
|
||||||
|
<source>Install failed. Failed to download package:
|
||||||
|
NuGet returned:
|
||||||
|
|
||||||
|
{0}</source>
|
||||||
|
<target state="new">Install failed. Failed to download package:
|
||||||
|
NuGet returned:
|
||||||
|
|
||||||
|
{0}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="InstallFailedPackage">
|
||||||
|
<source>Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
||||||
|
The error was:
|
||||||
|
|
||||||
|
{0}</source>
|
||||||
|
<target state="new">Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
||||||
|
The error was:
|
||||||
|
|
||||||
|
{0}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="PackageIdArgumentDescription">
|
||||||
|
<source>NuGet Package Id of the tool to install.</source>
|
||||||
|
<target state="new">NuGet Package Id of the tool to install.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="CommandDescription">
|
||||||
|
<source>Installs a tool for use on the command line.</source>
|
||||||
|
<target state="new">Installs a tool for use on the command line.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="ConfigFileOptionDescription">
|
||||||
|
<source>The NuGet configuration file to use.</source>
|
||||||
|
<target state="new">The NuGet configuration file to use.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="FrameworkOptionDescription">
|
||||||
|
<source>The target framework to install the tool for.</source>
|
||||||
|
<target state="new">The target framework to install the tool for.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="VersionOptionDescription">
|
||||||
|
<source>Version of the tool package in NuGet.</source>
|
||||||
|
<target state="new">Version of the tool package in NuGet.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="PackageIdArgumentName">
|
||||||
|
<source>PACKAGE_ID</source>
|
||||||
|
<target state="new">PACKAGE_ID</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
</body>
|
||||||
|
</file>
|
||||||
|
</xliff>
|
|
@ -0,0 +1,98 @@
|
||||||
|
<?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="../LocalizableStrings.resx">
|
||||||
|
<body>
|
||||||
|
<trans-unit id="SourceOptionDescription">
|
||||||
|
<source>Specifies a NuGet package source to use during installation.</source>
|
||||||
|
<target state="new">Specifies a NuGet package source to use during installation.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="SourceOptionName">
|
||||||
|
<source>SOURCE</source>
|
||||||
|
<target state="new">SOURCE</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="InstallationSucceeded">
|
||||||
|
<source>
|
||||||
|
The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0}</source>
|
||||||
|
<target state="new">
|
||||||
|
The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="FailedToAddPackage">
|
||||||
|
<source>Failed to add package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</source>
|
||||||
|
<target state="new">Failed to add package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="FailedToRestorePackage">
|
||||||
|
<source>Failed to restore package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</source>
|
||||||
|
<target state="new">Failed to restore package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="InstallFailedNuget">
|
||||||
|
<source>Install failed. Failed to download package:
|
||||||
|
NuGet returned:
|
||||||
|
|
||||||
|
{0}</source>
|
||||||
|
<target state="new">Install failed. Failed to download package:
|
||||||
|
NuGet returned:
|
||||||
|
|
||||||
|
{0}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="InstallFailedPackage">
|
||||||
|
<source>Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
||||||
|
The error was:
|
||||||
|
|
||||||
|
{0}</source>
|
||||||
|
<target state="new">Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
||||||
|
The error was:
|
||||||
|
|
||||||
|
{0}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="PackageIdArgumentDescription">
|
||||||
|
<source>NuGet Package Id of the tool to install.</source>
|
||||||
|
<target state="new">NuGet Package Id of the tool to install.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="CommandDescription">
|
||||||
|
<source>Installs a tool for use on the command line.</source>
|
||||||
|
<target state="new">Installs a tool for use on the command line.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="ConfigFileOptionDescription">
|
||||||
|
<source>The NuGet configuration file to use.</source>
|
||||||
|
<target state="new">The NuGet configuration file to use.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="FrameworkOptionDescription">
|
||||||
|
<source>The target framework to install the tool for.</source>
|
||||||
|
<target state="new">The target framework to install the tool for.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="VersionOptionDescription">
|
||||||
|
<source>Version of the tool package in NuGet.</source>
|
||||||
|
<target state="new">Version of the tool package in NuGet.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="PackageIdArgumentName">
|
||||||
|
<source>PACKAGE_ID</source>
|
||||||
|
<target state="new">PACKAGE_ID</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
</body>
|
||||||
|
</file>
|
||||||
|
</xliff>
|
|
@ -0,0 +1,98 @@
|
||||||
|
<?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="../LocalizableStrings.resx">
|
||||||
|
<body>
|
||||||
|
<trans-unit id="SourceOptionDescription">
|
||||||
|
<source>Specifies a NuGet package source to use during installation.</source>
|
||||||
|
<target state="new">Specifies a NuGet package source to use during installation.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="SourceOptionName">
|
||||||
|
<source>SOURCE</source>
|
||||||
|
<target state="new">SOURCE</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="InstallationSucceeded">
|
||||||
|
<source>
|
||||||
|
The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0}</source>
|
||||||
|
<target state="new">
|
||||||
|
The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="FailedToAddPackage">
|
||||||
|
<source>Failed to add package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</source>
|
||||||
|
<target state="new">Failed to add package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="FailedToRestorePackage">
|
||||||
|
<source>Failed to restore package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</source>
|
||||||
|
<target state="new">Failed to restore package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="InstallFailedNuget">
|
||||||
|
<source>Install failed. Failed to download package:
|
||||||
|
NuGet returned:
|
||||||
|
|
||||||
|
{0}</source>
|
||||||
|
<target state="new">Install failed. Failed to download package:
|
||||||
|
NuGet returned:
|
||||||
|
|
||||||
|
{0}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="InstallFailedPackage">
|
||||||
|
<source>Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
||||||
|
The error was:
|
||||||
|
|
||||||
|
{0}</source>
|
||||||
|
<target state="new">Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
||||||
|
The error was:
|
||||||
|
|
||||||
|
{0}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="PackageIdArgumentDescription">
|
||||||
|
<source>NuGet Package Id of the tool to install.</source>
|
||||||
|
<target state="new">NuGet Package Id of the tool to install.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="CommandDescription">
|
||||||
|
<source>Installs a tool for use on the command line.</source>
|
||||||
|
<target state="new">Installs a tool for use on the command line.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="ConfigFileOptionDescription">
|
||||||
|
<source>The NuGet configuration file to use.</source>
|
||||||
|
<target state="new">The NuGet configuration file to use.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="FrameworkOptionDescription">
|
||||||
|
<source>The target framework to install the tool for.</source>
|
||||||
|
<target state="new">The target framework to install the tool for.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="VersionOptionDescription">
|
||||||
|
<source>Version of the tool package in NuGet.</source>
|
||||||
|
<target state="new">Version of the tool package in NuGet.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="PackageIdArgumentName">
|
||||||
|
<source>PACKAGE_ID</source>
|
||||||
|
<target state="new">PACKAGE_ID</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
</body>
|
||||||
|
</file>
|
||||||
|
</xliff>
|
|
@ -0,0 +1,98 @@
|
||||||
|
<?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="../LocalizableStrings.resx">
|
||||||
|
<body>
|
||||||
|
<trans-unit id="SourceOptionDescription">
|
||||||
|
<source>Specifies a NuGet package source to use during installation.</source>
|
||||||
|
<target state="new">Specifies a NuGet package source to use during installation.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="SourceOptionName">
|
||||||
|
<source>SOURCE</source>
|
||||||
|
<target state="new">SOURCE</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="InstallationSucceeded">
|
||||||
|
<source>
|
||||||
|
The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0}</source>
|
||||||
|
<target state="new">
|
||||||
|
The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="FailedToAddPackage">
|
||||||
|
<source>Failed to add package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</source>
|
||||||
|
<target state="new">Failed to add package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="FailedToRestorePackage">
|
||||||
|
<source>Failed to restore package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</source>
|
||||||
|
<target state="new">Failed to restore package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="InstallFailedNuget">
|
||||||
|
<source>Install failed. Failed to download package:
|
||||||
|
NuGet returned:
|
||||||
|
|
||||||
|
{0}</source>
|
||||||
|
<target state="new">Install failed. Failed to download package:
|
||||||
|
NuGet returned:
|
||||||
|
|
||||||
|
{0}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="InstallFailedPackage">
|
||||||
|
<source>Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
||||||
|
The error was:
|
||||||
|
|
||||||
|
{0}</source>
|
||||||
|
<target state="new">Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
||||||
|
The error was:
|
||||||
|
|
||||||
|
{0}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="PackageIdArgumentDescription">
|
||||||
|
<source>NuGet Package Id of the tool to install.</source>
|
||||||
|
<target state="new">NuGet Package Id of the tool to install.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="CommandDescription">
|
||||||
|
<source>Installs a tool for use on the command line.</source>
|
||||||
|
<target state="new">Installs a tool for use on the command line.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="ConfigFileOptionDescription">
|
||||||
|
<source>The NuGet configuration file to use.</source>
|
||||||
|
<target state="new">The NuGet configuration file to use.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="FrameworkOptionDescription">
|
||||||
|
<source>The target framework to install the tool for.</source>
|
||||||
|
<target state="new">The target framework to install the tool for.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="VersionOptionDescription">
|
||||||
|
<source>Version of the tool package in NuGet.</source>
|
||||||
|
<target state="new">Version of the tool package in NuGet.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="PackageIdArgumentName">
|
||||||
|
<source>PACKAGE_ID</source>
|
||||||
|
<target state="new">PACKAGE_ID</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
</body>
|
||||||
|
</file>
|
||||||
|
</xliff>
|
|
@ -0,0 +1,98 @@
|
||||||
|
<?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="../LocalizableStrings.resx">
|
||||||
|
<body>
|
||||||
|
<trans-unit id="SourceOptionDescription">
|
||||||
|
<source>Specifies a NuGet package source to use during installation.</source>
|
||||||
|
<target state="new">Specifies a NuGet package source to use during installation.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="SourceOptionName">
|
||||||
|
<source>SOURCE</source>
|
||||||
|
<target state="new">SOURCE</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="InstallationSucceeded">
|
||||||
|
<source>
|
||||||
|
The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0}</source>
|
||||||
|
<target state="new">
|
||||||
|
The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="FailedToAddPackage">
|
||||||
|
<source>Failed to add package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</source>
|
||||||
|
<target state="new">Failed to add package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="FailedToRestorePackage">
|
||||||
|
<source>Failed to restore package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</source>
|
||||||
|
<target state="new">Failed to restore package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="InstallFailedNuget">
|
||||||
|
<source>Install failed. Failed to download package:
|
||||||
|
NuGet returned:
|
||||||
|
|
||||||
|
{0}</source>
|
||||||
|
<target state="new">Install failed. Failed to download package:
|
||||||
|
NuGet returned:
|
||||||
|
|
||||||
|
{0}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="InstallFailedPackage">
|
||||||
|
<source>Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
||||||
|
The error was:
|
||||||
|
|
||||||
|
{0}</source>
|
||||||
|
<target state="new">Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
||||||
|
The error was:
|
||||||
|
|
||||||
|
{0}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="PackageIdArgumentDescription">
|
||||||
|
<source>NuGet Package Id of the tool to install.</source>
|
||||||
|
<target state="new">NuGet Package Id of the tool to install.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="CommandDescription">
|
||||||
|
<source>Installs a tool for use on the command line.</source>
|
||||||
|
<target state="new">Installs a tool for use on the command line.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="ConfigFileOptionDescription">
|
||||||
|
<source>The NuGet configuration file to use.</source>
|
||||||
|
<target state="new">The NuGet configuration file to use.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="FrameworkOptionDescription">
|
||||||
|
<source>The target framework to install the tool for.</source>
|
||||||
|
<target state="new">The target framework to install the tool for.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="VersionOptionDescription">
|
||||||
|
<source>Version of the tool package in NuGet.</source>
|
||||||
|
<target state="new">Version of the tool package in NuGet.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="PackageIdArgumentName">
|
||||||
|
<source>PACKAGE_ID</source>
|
||||||
|
<target state="new">PACKAGE_ID</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
</body>
|
||||||
|
</file>
|
||||||
|
</xliff>
|
|
@ -0,0 +1,98 @@
|
||||||
|
<?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="../LocalizableStrings.resx">
|
||||||
|
<body>
|
||||||
|
<trans-unit id="SourceOptionDescription">
|
||||||
|
<source>Specifies a NuGet package source to use during installation.</source>
|
||||||
|
<target state="new">Specifies a NuGet package source to use during installation.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="SourceOptionName">
|
||||||
|
<source>SOURCE</source>
|
||||||
|
<target state="new">SOURCE</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="InstallationSucceeded">
|
||||||
|
<source>
|
||||||
|
The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0}</source>
|
||||||
|
<target state="new">
|
||||||
|
The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="FailedToAddPackage">
|
||||||
|
<source>Failed to add package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</source>
|
||||||
|
<target state="new">Failed to add package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="FailedToRestorePackage">
|
||||||
|
<source>Failed to restore package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</source>
|
||||||
|
<target state="new">Failed to restore package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="InstallFailedNuget">
|
||||||
|
<source>Install failed. Failed to download package:
|
||||||
|
NuGet returned:
|
||||||
|
|
||||||
|
{0}</source>
|
||||||
|
<target state="new">Install failed. Failed to download package:
|
||||||
|
NuGet returned:
|
||||||
|
|
||||||
|
{0}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="InstallFailedPackage">
|
||||||
|
<source>Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
||||||
|
The error was:
|
||||||
|
|
||||||
|
{0}</source>
|
||||||
|
<target state="new">Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
||||||
|
The error was:
|
||||||
|
|
||||||
|
{0}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="PackageIdArgumentDescription">
|
||||||
|
<source>NuGet Package Id of the tool to install.</source>
|
||||||
|
<target state="new">NuGet Package Id of the tool to install.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="CommandDescription">
|
||||||
|
<source>Installs a tool for use on the command line.</source>
|
||||||
|
<target state="new">Installs a tool for use on the command line.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="ConfigFileOptionDescription">
|
||||||
|
<source>The NuGet configuration file to use.</source>
|
||||||
|
<target state="new">The NuGet configuration file to use.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="FrameworkOptionDescription">
|
||||||
|
<source>The target framework to install the tool for.</source>
|
||||||
|
<target state="new">The target framework to install the tool for.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="VersionOptionDescription">
|
||||||
|
<source>Version of the tool package in NuGet.</source>
|
||||||
|
<target state="new">Version of the tool package in NuGet.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="PackageIdArgumentName">
|
||||||
|
<source>PACKAGE_ID</source>
|
||||||
|
<target state="new">PACKAGE_ID</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
</body>
|
||||||
|
</file>
|
||||||
|
</xliff>
|
|
@ -0,0 +1,98 @@
|
||||||
|
<?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="../LocalizableStrings.resx">
|
||||||
|
<body>
|
||||||
|
<trans-unit id="SourceOptionDescription">
|
||||||
|
<source>Specifies a NuGet package source to use during installation.</source>
|
||||||
|
<target state="new">Specifies a NuGet package source to use during installation.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="SourceOptionName">
|
||||||
|
<source>SOURCE</source>
|
||||||
|
<target state="new">SOURCE</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="InstallationSucceeded">
|
||||||
|
<source>
|
||||||
|
The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0}</source>
|
||||||
|
<target state="new">
|
||||||
|
The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="FailedToAddPackage">
|
||||||
|
<source>Failed to add package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</source>
|
||||||
|
<target state="new">Failed to add package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="FailedToRestorePackage">
|
||||||
|
<source>Failed to restore package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</source>
|
||||||
|
<target state="new">Failed to restore package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="InstallFailedNuget">
|
||||||
|
<source>Install failed. Failed to download package:
|
||||||
|
NuGet returned:
|
||||||
|
|
||||||
|
{0}</source>
|
||||||
|
<target state="new">Install failed. Failed to download package:
|
||||||
|
NuGet returned:
|
||||||
|
|
||||||
|
{0}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="InstallFailedPackage">
|
||||||
|
<source>Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
||||||
|
The error was:
|
||||||
|
|
||||||
|
{0}</source>
|
||||||
|
<target state="new">Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
||||||
|
The error was:
|
||||||
|
|
||||||
|
{0}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="PackageIdArgumentDescription">
|
||||||
|
<source>NuGet Package Id of the tool to install.</source>
|
||||||
|
<target state="new">NuGet Package Id of the tool to install.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="CommandDescription">
|
||||||
|
<source>Installs a tool for use on the command line.</source>
|
||||||
|
<target state="new">Installs a tool for use on the command line.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="ConfigFileOptionDescription">
|
||||||
|
<source>The NuGet configuration file to use.</source>
|
||||||
|
<target state="new">The NuGet configuration file to use.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="FrameworkOptionDescription">
|
||||||
|
<source>The target framework to install the tool for.</source>
|
||||||
|
<target state="new">The target framework to install the tool for.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="VersionOptionDescription">
|
||||||
|
<source>Version of the tool package in NuGet.</source>
|
||||||
|
<target state="new">Version of the tool package in NuGet.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="PackageIdArgumentName">
|
||||||
|
<source>PACKAGE_ID</source>
|
||||||
|
<target state="new">PACKAGE_ID</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
</body>
|
||||||
|
</file>
|
||||||
|
</xliff>
|
|
@ -0,0 +1,98 @@
|
||||||
|
<?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="../LocalizableStrings.resx">
|
||||||
|
<body>
|
||||||
|
<trans-unit id="SourceOptionDescription">
|
||||||
|
<source>Specifies a NuGet package source to use during installation.</source>
|
||||||
|
<target state="new">Specifies a NuGet package source to use during installation.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="SourceOptionName">
|
||||||
|
<source>SOURCE</source>
|
||||||
|
<target state="new">SOURCE</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="InstallationSucceeded">
|
||||||
|
<source>
|
||||||
|
The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0}</source>
|
||||||
|
<target state="new">
|
||||||
|
The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="FailedToAddPackage">
|
||||||
|
<source>Failed to add package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</source>
|
||||||
|
<target state="new">Failed to add package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="FailedToRestorePackage">
|
||||||
|
<source>Failed to restore package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</source>
|
||||||
|
<target state="new">Failed to restore package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="InstallFailedNuget">
|
||||||
|
<source>Install failed. Failed to download package:
|
||||||
|
NuGet returned:
|
||||||
|
|
||||||
|
{0}</source>
|
||||||
|
<target state="new">Install failed. Failed to download package:
|
||||||
|
NuGet returned:
|
||||||
|
|
||||||
|
{0}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="InstallFailedPackage">
|
||||||
|
<source>Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
||||||
|
The error was:
|
||||||
|
|
||||||
|
{0}</source>
|
||||||
|
<target state="new">Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
||||||
|
The error was:
|
||||||
|
|
||||||
|
{0}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="PackageIdArgumentDescription">
|
||||||
|
<source>NuGet Package Id of the tool to install.</source>
|
||||||
|
<target state="new">NuGet Package Id of the tool to install.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="CommandDescription">
|
||||||
|
<source>Installs a tool for use on the command line.</source>
|
||||||
|
<target state="new">Installs a tool for use on the command line.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="ConfigFileOptionDescription">
|
||||||
|
<source>The NuGet configuration file to use.</source>
|
||||||
|
<target state="new">The NuGet configuration file to use.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="FrameworkOptionDescription">
|
||||||
|
<source>The target framework to install the tool for.</source>
|
||||||
|
<target state="new">The target framework to install the tool for.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="VersionOptionDescription">
|
||||||
|
<source>Version of the tool package in NuGet.</source>
|
||||||
|
<target state="new">Version of the tool package in NuGet.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="PackageIdArgumentName">
|
||||||
|
<source>PACKAGE_ID</source>
|
||||||
|
<target state="new">PACKAGE_ID</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
</body>
|
||||||
|
</file>
|
||||||
|
</xliff>
|
|
@ -0,0 +1,98 @@
|
||||||
|
<?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="../LocalizableStrings.resx">
|
||||||
|
<body>
|
||||||
|
<trans-unit id="SourceOptionDescription">
|
||||||
|
<source>Specifies a NuGet package source to use during installation.</source>
|
||||||
|
<target state="new">Specifies a NuGet package source to use during installation.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="SourceOptionName">
|
||||||
|
<source>SOURCE</source>
|
||||||
|
<target state="new">SOURCE</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="InstallationSucceeded">
|
||||||
|
<source>
|
||||||
|
The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0}</source>
|
||||||
|
<target state="new">
|
||||||
|
The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="FailedToAddPackage">
|
||||||
|
<source>Failed to add package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</source>
|
||||||
|
<target state="new">Failed to add package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="FailedToRestorePackage">
|
||||||
|
<source>Failed to restore package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</source>
|
||||||
|
<target state="new">Failed to restore package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="InstallFailedNuget">
|
||||||
|
<source>Install failed. Failed to download package:
|
||||||
|
NuGet returned:
|
||||||
|
|
||||||
|
{0}</source>
|
||||||
|
<target state="new">Install failed. Failed to download package:
|
||||||
|
NuGet returned:
|
||||||
|
|
||||||
|
{0}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="InstallFailedPackage">
|
||||||
|
<source>Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
||||||
|
The error was:
|
||||||
|
|
||||||
|
{0}</source>
|
||||||
|
<target state="new">Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
||||||
|
The error was:
|
||||||
|
|
||||||
|
{0}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="PackageIdArgumentDescription">
|
||||||
|
<source>NuGet Package Id of the tool to install.</source>
|
||||||
|
<target state="new">NuGet Package Id of the tool to install.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="CommandDescription">
|
||||||
|
<source>Installs a tool for use on the command line.</source>
|
||||||
|
<target state="new">Installs a tool for use on the command line.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="ConfigFileOptionDescription">
|
||||||
|
<source>The NuGet configuration file to use.</source>
|
||||||
|
<target state="new">The NuGet configuration file to use.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="FrameworkOptionDescription">
|
||||||
|
<source>The target framework to install the tool for.</source>
|
||||||
|
<target state="new">The target framework to install the tool for.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="VersionOptionDescription">
|
||||||
|
<source>Version of the tool package in NuGet.</source>
|
||||||
|
<target state="new">Version of the tool package in NuGet.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="PackageIdArgumentName">
|
||||||
|
<source>PACKAGE_ID</source>
|
||||||
|
<target state="new">PACKAGE_ID</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
</body>
|
||||||
|
</file>
|
||||||
|
</xliff>
|
|
@ -0,0 +1,98 @@
|
||||||
|
<?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="../LocalizableStrings.resx">
|
||||||
|
<body>
|
||||||
|
<trans-unit id="SourceOptionDescription">
|
||||||
|
<source>Specifies a NuGet package source to use during installation.</source>
|
||||||
|
<target state="new">Specifies a NuGet package source to use during installation.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="SourceOptionName">
|
||||||
|
<source>SOURCE</source>
|
||||||
|
<target state="new">SOURCE</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="InstallationSucceeded">
|
||||||
|
<source>
|
||||||
|
The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0}</source>
|
||||||
|
<target state="new">
|
||||||
|
The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="FailedToAddPackage">
|
||||||
|
<source>Failed to add package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</source>
|
||||||
|
<target state="new">Failed to add package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="FailedToRestorePackage">
|
||||||
|
<source>Failed to restore package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</source>
|
||||||
|
<target state="new">Failed to restore package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="InstallFailedNuget">
|
||||||
|
<source>Install failed. Failed to download package:
|
||||||
|
NuGet returned:
|
||||||
|
|
||||||
|
{0}</source>
|
||||||
|
<target state="new">Install failed. Failed to download package:
|
||||||
|
NuGet returned:
|
||||||
|
|
||||||
|
{0}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="InstallFailedPackage">
|
||||||
|
<source>Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
||||||
|
The error was:
|
||||||
|
|
||||||
|
{0}</source>
|
||||||
|
<target state="new">Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
||||||
|
The error was:
|
||||||
|
|
||||||
|
{0}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="PackageIdArgumentDescription">
|
||||||
|
<source>NuGet Package Id of the tool to install.</source>
|
||||||
|
<target state="new">NuGet Package Id of the tool to install.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="CommandDescription">
|
||||||
|
<source>Installs a tool for use on the command line.</source>
|
||||||
|
<target state="new">Installs a tool for use on the command line.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="ConfigFileOptionDescription">
|
||||||
|
<source>The NuGet configuration file to use.</source>
|
||||||
|
<target state="new">The NuGet configuration file to use.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="FrameworkOptionDescription">
|
||||||
|
<source>The target framework to install the tool for.</source>
|
||||||
|
<target state="new">The target framework to install the tool for.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="VersionOptionDescription">
|
||||||
|
<source>Version of the tool package in NuGet.</source>
|
||||||
|
<target state="new">Version of the tool package in NuGet.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="PackageIdArgumentName">
|
||||||
|
<source>PACKAGE_ID</source>
|
||||||
|
<target state="new">PACKAGE_ID</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
</body>
|
||||||
|
</file>
|
||||||
|
</xliff>
|
|
@ -0,0 +1,98 @@
|
||||||
|
<?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="../LocalizableStrings.resx">
|
||||||
|
<body>
|
||||||
|
<trans-unit id="SourceOptionDescription">
|
||||||
|
<source>Specifies a NuGet package source to use during installation.</source>
|
||||||
|
<target state="new">Specifies a NuGet package source to use during installation.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="SourceOptionName">
|
||||||
|
<source>SOURCE</source>
|
||||||
|
<target state="new">SOURCE</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="InstallationSucceeded">
|
||||||
|
<source>
|
||||||
|
The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0}</source>
|
||||||
|
<target state="new">
|
||||||
|
The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="FailedToAddPackage">
|
||||||
|
<source>Failed to add package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</source>
|
||||||
|
<target state="new">Failed to add package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="FailedToRestorePackage">
|
||||||
|
<source>Failed to restore package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</source>
|
||||||
|
<target state="new">Failed to restore package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="InstallFailedNuget">
|
||||||
|
<source>Install failed. Failed to download package:
|
||||||
|
NuGet returned:
|
||||||
|
|
||||||
|
{0}</source>
|
||||||
|
<target state="new">Install failed. Failed to download package:
|
||||||
|
NuGet returned:
|
||||||
|
|
||||||
|
{0}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="InstallFailedPackage">
|
||||||
|
<source>Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
||||||
|
The error was:
|
||||||
|
|
||||||
|
{0}</source>
|
||||||
|
<target state="new">Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
||||||
|
The error was:
|
||||||
|
|
||||||
|
{0}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="PackageIdArgumentDescription">
|
||||||
|
<source>NuGet Package Id of the tool to install.</source>
|
||||||
|
<target state="new">NuGet Package Id of the tool to install.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="CommandDescription">
|
||||||
|
<source>Installs a tool for use on the command line.</source>
|
||||||
|
<target state="new">Installs a tool for use on the command line.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="ConfigFileOptionDescription">
|
||||||
|
<source>The NuGet configuration file to use.</source>
|
||||||
|
<target state="new">The NuGet configuration file to use.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="FrameworkOptionDescription">
|
||||||
|
<source>The target framework to install the tool for.</source>
|
||||||
|
<target state="new">The target framework to install the tool for.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="VersionOptionDescription">
|
||||||
|
<source>Version of the tool package in NuGet.</source>
|
||||||
|
<target state="new">Version of the tool package in NuGet.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="PackageIdArgumentName">
|
||||||
|
<source>PACKAGE_ID</source>
|
||||||
|
<target state="new">PACKAGE_ID</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
</body>
|
||||||
|
</file>
|
||||||
|
</xliff>
|
|
@ -0,0 +1,98 @@
|
||||||
|
<?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="../LocalizableStrings.resx">
|
||||||
|
<body>
|
||||||
|
<trans-unit id="SourceOptionDescription">
|
||||||
|
<source>Specifies a NuGet package source to use during installation.</source>
|
||||||
|
<target state="new">Specifies a NuGet package source to use during installation.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="SourceOptionName">
|
||||||
|
<source>SOURCE</source>
|
||||||
|
<target state="new">SOURCE</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="InstallationSucceeded">
|
||||||
|
<source>
|
||||||
|
The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0}</source>
|
||||||
|
<target state="new">
|
||||||
|
The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="FailedToAddPackage">
|
||||||
|
<source>Failed to add package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</source>
|
||||||
|
<target state="new">Failed to add package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="FailedToRestorePackage">
|
||||||
|
<source>Failed to restore package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</source>
|
||||||
|
<target state="new">Failed to restore package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="InstallFailedNuget">
|
||||||
|
<source>Install failed. Failed to download package:
|
||||||
|
NuGet returned:
|
||||||
|
|
||||||
|
{0}</source>
|
||||||
|
<target state="new">Install failed. Failed to download package:
|
||||||
|
NuGet returned:
|
||||||
|
|
||||||
|
{0}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="InstallFailedPackage">
|
||||||
|
<source>Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
||||||
|
The error was:
|
||||||
|
|
||||||
|
{0}</source>
|
||||||
|
<target state="new">Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
||||||
|
The error was:
|
||||||
|
|
||||||
|
{0}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="PackageIdArgumentDescription">
|
||||||
|
<source>NuGet Package Id of the tool to install.</source>
|
||||||
|
<target state="new">NuGet Package Id of the tool to install.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="CommandDescription">
|
||||||
|
<source>Installs a tool for use on the command line.</source>
|
||||||
|
<target state="new">Installs a tool for use on the command line.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="ConfigFileOptionDescription">
|
||||||
|
<source>The NuGet configuration file to use.</source>
|
||||||
|
<target state="new">The NuGet configuration file to use.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="FrameworkOptionDescription">
|
||||||
|
<source>The target framework to install the tool for.</source>
|
||||||
|
<target state="new">The target framework to install the tool for.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="VersionOptionDescription">
|
||||||
|
<source>Version of the tool package in NuGet.</source>
|
||||||
|
<target state="new">Version of the tool package in NuGet.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="PackageIdArgumentName">
|
||||||
|
<source>PACKAGE_ID</source>
|
||||||
|
<target state="new">PACKAGE_ID</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
</body>
|
||||||
|
</file>
|
||||||
|
</xliff>
|
|
@ -0,0 +1,98 @@
|
||||||
|
<?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="../LocalizableStrings.resx">
|
||||||
|
<body>
|
||||||
|
<trans-unit id="SourceOptionDescription">
|
||||||
|
<source>Specifies a NuGet package source to use during installation.</source>
|
||||||
|
<target state="new">Specifies a NuGet package source to use during installation.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="SourceOptionName">
|
||||||
|
<source>SOURCE</source>
|
||||||
|
<target state="new">SOURCE</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="InstallationSucceeded">
|
||||||
|
<source>
|
||||||
|
The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0}</source>
|
||||||
|
<target state="new">
|
||||||
|
The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="FailedToAddPackage">
|
||||||
|
<source>Failed to add package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</source>
|
||||||
|
<target state="new">Failed to add package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="FailedToRestorePackage">
|
||||||
|
<source>Failed to restore package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</source>
|
||||||
|
<target state="new">Failed to restore package.
|
||||||
|
WorkingDirectory: {0}
|
||||||
|
Arguments: {1}
|
||||||
|
Output: {2}{3}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="InstallFailedNuget">
|
||||||
|
<source>Install failed. Failed to download package:
|
||||||
|
NuGet returned:
|
||||||
|
|
||||||
|
{0}</source>
|
||||||
|
<target state="new">Install failed. Failed to download package:
|
||||||
|
NuGet returned:
|
||||||
|
|
||||||
|
{0}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="InstallFailedPackage">
|
||||||
|
<source>Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
||||||
|
The error was:
|
||||||
|
|
||||||
|
{0}</source>
|
||||||
|
<target state="new">Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
||||||
|
The error was:
|
||||||
|
|
||||||
|
{0}</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="PackageIdArgumentDescription">
|
||||||
|
<source>NuGet Package Id of the tool to install.</source>
|
||||||
|
<target state="new">NuGet Package Id of the tool to install.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="CommandDescription">
|
||||||
|
<source>Installs a tool for use on the command line.</source>
|
||||||
|
<target state="new">Installs a tool for use on the command line.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="ConfigFileOptionDescription">
|
||||||
|
<source>The NuGet configuration file to use.</source>
|
||||||
|
<target state="new">The NuGet configuration file to use.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="FrameworkOptionDescription">
|
||||||
|
<source>The target framework to install the tool for.</source>
|
||||||
|
<target state="new">The target framework to install the tool for.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="VersionOptionDescription">
|
||||||
|
<source>Version of the tool package in NuGet.</source>
|
||||||
|
<target state="new">Version of the tool package in NuGet.</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="PackageIdArgumentName">
|
||||||
|
<source>PACKAGE_ID</source>
|
||||||
|
<target state="new">PACKAGE_ID</target>
|
||||||
|
<note />
|
||||||
|
</trans-unit>
|
||||||
|
</body>
|
||||||
|
</file>
|
||||||
|
</xliff>
|
|
@ -2,100 +2,14 @@
|
||||||
<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">
|
<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="../LocalizableStrings.resx">
|
<file datatype="xml" source-language="en" target-language="cs" original="../LocalizableStrings.resx">
|
||||||
<body>
|
<body>
|
||||||
<trans-unit id="SourceOptionDescription">
|
|
||||||
<source>Specifies a NuGet package source to use during installation.</source>
|
|
||||||
<target state="new">Specifies a NuGet package source to use during installation.</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="SourceOptionName">
|
|
||||||
<source>SOURCE</source>
|
|
||||||
<target state="new">SOURCE</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallationSucceeded">
|
|
||||||
<source>
|
|
||||||
The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0}</source>
|
|
||||||
<target state="new">
|
|
||||||
The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallCommandDefinition">
|
|
||||||
<source>Add item to development environment.</source>
|
|
||||||
<target state="new">Add item to development environment.</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallFailedNuget">
|
|
||||||
<source>Install failed. Failed to download package:
|
|
||||||
NuGet returned:
|
|
||||||
|
|
||||||
{0}</source>
|
|
||||||
<target state="new">Install failed. Failed to download package:
|
|
||||||
NuGet returned:
|
|
||||||
|
|
||||||
{0}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallFailedPackage">
|
|
||||||
<source>Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
|
||||||
The error was:
|
|
||||||
|
|
||||||
{0}</source>
|
|
||||||
<target state="new">Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
|
||||||
The error was:
|
|
||||||
|
|
||||||
{0}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallFullCommandNameLocalized">
|
<trans-unit id="InstallFullCommandNameLocalized">
|
||||||
<source>NetInstallCommand</source>
|
<source>.NET Install Command</source>
|
||||||
<target state="new">NetInstallCommand</target>
|
<target state="new">.NET Install Command</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="InstallToolCommandDefinition">
|
<trans-unit id="CommandDescription">
|
||||||
<source>Install tool for use on the command line.</source>
|
<source>Installs an item into the development environment.</source>
|
||||||
<target state="new">Install tool for use on the command line.</target>
|
<target state="new">Installs an item into the development environment.</target>
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolConfigfileDefinition">
|
|
||||||
<source>NuGet configuration file</source>
|
|
||||||
<target state="new">NuGet configuration file</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolFrameworkDefinition">
|
|
||||||
<source>Target framework to publish for. The target framework has to be specified in the project file.</source>
|
|
||||||
<target state="new">Target framework to publish for. The target framework has to be specified in the project file.</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolPackageIdDefinition">
|
|
||||||
<source>Package Id in NuGet</source>
|
|
||||||
<target state="new">Package Id in NuGet</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolVersionDefinition">
|
|
||||||
<source>Version of the package in NuGet</source>
|
|
||||||
<target state="new">Version of the package in NuGet</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="FailedToAddPackage">
|
|
||||||
<source>Failed to add package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</source>
|
|
||||||
<target state="new">Failed to add package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="FailedToRestorePackage">
|
|
||||||
<source>Failed to restore package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</source>
|
|
||||||
<target state="new">Failed to restore package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</target>
|
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,100 +2,14 @@
|
||||||
<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">
|
<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="../LocalizableStrings.resx">
|
<file datatype="xml" source-language="en" target-language="de" original="../LocalizableStrings.resx">
|
||||||
<body>
|
<body>
|
||||||
<trans-unit id="SourceOptionDescription">
|
|
||||||
<source>Specifies a NuGet package source to use during installation.</source>
|
|
||||||
<target state="new">Specifies a NuGet package source to use during installation.</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="SourceOptionName">
|
|
||||||
<source>SOURCE</source>
|
|
||||||
<target state="new">SOURCE</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallationSucceeded">
|
|
||||||
<source>
|
|
||||||
The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0}</source>
|
|
||||||
<target state="new">
|
|
||||||
The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallCommandDefinition">
|
|
||||||
<source>Add item to development environment.</source>
|
|
||||||
<target state="new">Add item to development environment.</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallFailedNuget">
|
|
||||||
<source>Install failed. Failed to download package:
|
|
||||||
NuGet returned:
|
|
||||||
|
|
||||||
{0}</source>
|
|
||||||
<target state="new">Install failed. Failed to download package:
|
|
||||||
NuGet returned:
|
|
||||||
|
|
||||||
{0}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallFailedPackage">
|
|
||||||
<source>Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
|
||||||
The error was:
|
|
||||||
|
|
||||||
{0}</source>
|
|
||||||
<target state="new">Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
|
||||||
The error was:
|
|
||||||
|
|
||||||
{0}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallFullCommandNameLocalized">
|
<trans-unit id="InstallFullCommandNameLocalized">
|
||||||
<source>NetInstallCommand</source>
|
<source>.NET Install Command</source>
|
||||||
<target state="new">NetInstallCommand</target>
|
<target state="new">.NET Install Command</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="InstallToolCommandDefinition">
|
<trans-unit id="CommandDescription">
|
||||||
<source>Install tool for use on the command line.</source>
|
<source>Installs an item into the development environment.</source>
|
||||||
<target state="new">Install tool for use on the command line.</target>
|
<target state="new">Installs an item into the development environment.</target>
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolConfigfileDefinition">
|
|
||||||
<source>NuGet configuration file</source>
|
|
||||||
<target state="new">NuGet configuration file</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolFrameworkDefinition">
|
|
||||||
<source>Target framework to publish for. The target framework has to be specified in the project file.</source>
|
|
||||||
<target state="new">Target framework to publish for. The target framework has to be specified in the project file.</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolPackageIdDefinition">
|
|
||||||
<source>Package Id in NuGet</source>
|
|
||||||
<target state="new">Package Id in NuGet</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolVersionDefinition">
|
|
||||||
<source>Version of the package in NuGet</source>
|
|
||||||
<target state="new">Version of the package in NuGet</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="FailedToAddPackage">
|
|
||||||
<source>Failed to add package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</source>
|
|
||||||
<target state="new">Failed to add package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="FailedToRestorePackage">
|
|
||||||
<source>Failed to restore package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</source>
|
|
||||||
<target state="new">Failed to restore package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</target>
|
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,100 +2,14 @@
|
||||||
<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">
|
<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="../LocalizableStrings.resx">
|
<file datatype="xml" source-language="en" target-language="es" original="../LocalizableStrings.resx">
|
||||||
<body>
|
<body>
|
||||||
<trans-unit id="SourceOptionDescription">
|
|
||||||
<source>Specifies a NuGet package source to use during installation.</source>
|
|
||||||
<target state="new">Specifies a NuGet package source to use during installation.</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="SourceOptionName">
|
|
||||||
<source>SOURCE</source>
|
|
||||||
<target state="new">SOURCE</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallationSucceeded">
|
|
||||||
<source>
|
|
||||||
The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0}</source>
|
|
||||||
<target state="new">
|
|
||||||
The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallCommandDefinition">
|
|
||||||
<source>Add item to development environment.</source>
|
|
||||||
<target state="new">Add item to development environment.</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallFailedNuget">
|
|
||||||
<source>Install failed. Failed to download package:
|
|
||||||
NuGet returned:
|
|
||||||
|
|
||||||
{0}</source>
|
|
||||||
<target state="new">Install failed. Failed to download package:
|
|
||||||
NuGet returned:
|
|
||||||
|
|
||||||
{0}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallFailedPackage">
|
|
||||||
<source>Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
|
||||||
The error was:
|
|
||||||
|
|
||||||
{0}</source>
|
|
||||||
<target state="new">Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
|
||||||
The error was:
|
|
||||||
|
|
||||||
{0}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallFullCommandNameLocalized">
|
<trans-unit id="InstallFullCommandNameLocalized">
|
||||||
<source>NetInstallCommand</source>
|
<source>.NET Install Command</source>
|
||||||
<target state="new">NetInstallCommand</target>
|
<target state="new">.NET Install Command</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="InstallToolCommandDefinition">
|
<trans-unit id="CommandDescription">
|
||||||
<source>Install tool for use on the command line.</source>
|
<source>Installs an item into the development environment.</source>
|
||||||
<target state="new">Install tool for use on the command line.</target>
|
<target state="new">Installs an item into the development environment.</target>
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolConfigfileDefinition">
|
|
||||||
<source>NuGet configuration file</source>
|
|
||||||
<target state="new">NuGet configuration file</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolFrameworkDefinition">
|
|
||||||
<source>Target framework to publish for. The target framework has to be specified in the project file.</source>
|
|
||||||
<target state="new">Target framework to publish for. The target framework has to be specified in the project file.</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolPackageIdDefinition">
|
|
||||||
<source>Package Id in NuGet</source>
|
|
||||||
<target state="new">Package Id in NuGet</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolVersionDefinition">
|
|
||||||
<source>Version of the package in NuGet</source>
|
|
||||||
<target state="new">Version of the package in NuGet</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="FailedToAddPackage">
|
|
||||||
<source>Failed to add package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</source>
|
|
||||||
<target state="new">Failed to add package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="FailedToRestorePackage">
|
|
||||||
<source>Failed to restore package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</source>
|
|
||||||
<target state="new">Failed to restore package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</target>
|
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,100 +2,14 @@
|
||||||
<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">
|
<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="../LocalizableStrings.resx">
|
<file datatype="xml" source-language="en" target-language="fr" original="../LocalizableStrings.resx">
|
||||||
<body>
|
<body>
|
||||||
<trans-unit id="SourceOptionDescription">
|
|
||||||
<source>Specifies a NuGet package source to use during installation.</source>
|
|
||||||
<target state="new">Specifies a NuGet package source to use during installation.</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="SourceOptionName">
|
|
||||||
<source>SOURCE</source>
|
|
||||||
<target state="new">SOURCE</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallationSucceeded">
|
|
||||||
<source>
|
|
||||||
The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0}</source>
|
|
||||||
<target state="new">
|
|
||||||
The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallCommandDefinition">
|
|
||||||
<source>Add item to development environment.</source>
|
|
||||||
<target state="new">Add item to development environment.</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallFailedNuget">
|
|
||||||
<source>Install failed. Failed to download package:
|
|
||||||
NuGet returned:
|
|
||||||
|
|
||||||
{0}</source>
|
|
||||||
<target state="new">Install failed. Failed to download package:
|
|
||||||
NuGet returned:
|
|
||||||
|
|
||||||
{0}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallFailedPackage">
|
|
||||||
<source>Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
|
||||||
The error was:
|
|
||||||
|
|
||||||
{0}</source>
|
|
||||||
<target state="new">Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
|
||||||
The error was:
|
|
||||||
|
|
||||||
{0}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallFullCommandNameLocalized">
|
<trans-unit id="InstallFullCommandNameLocalized">
|
||||||
<source>NetInstallCommand</source>
|
<source>.NET Install Command</source>
|
||||||
<target state="new">NetInstallCommand</target>
|
<target state="new">.NET Install Command</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="InstallToolCommandDefinition">
|
<trans-unit id="CommandDescription">
|
||||||
<source>Install tool for use on the command line.</source>
|
<source>Installs an item into the development environment.</source>
|
||||||
<target state="new">Install tool for use on the command line.</target>
|
<target state="new">Installs an item into the development environment.</target>
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolConfigfileDefinition">
|
|
||||||
<source>NuGet configuration file</source>
|
|
||||||
<target state="new">NuGet configuration file</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolFrameworkDefinition">
|
|
||||||
<source>Target framework to publish for. The target framework has to be specified in the project file.</source>
|
|
||||||
<target state="new">Target framework to publish for. The target framework has to be specified in the project file.</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolPackageIdDefinition">
|
|
||||||
<source>Package Id in NuGet</source>
|
|
||||||
<target state="new">Package Id in NuGet</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolVersionDefinition">
|
|
||||||
<source>Version of the package in NuGet</source>
|
|
||||||
<target state="new">Version of the package in NuGet</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="FailedToAddPackage">
|
|
||||||
<source>Failed to add package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</source>
|
|
||||||
<target state="new">Failed to add package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="FailedToRestorePackage">
|
|
||||||
<source>Failed to restore package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</source>
|
|
||||||
<target state="new">Failed to restore package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</target>
|
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,100 +2,14 @@
|
||||||
<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">
|
<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="../LocalizableStrings.resx">
|
<file datatype="xml" source-language="en" target-language="it" original="../LocalizableStrings.resx">
|
||||||
<body>
|
<body>
|
||||||
<trans-unit id="SourceOptionDescription">
|
|
||||||
<source>Specifies a NuGet package source to use during installation.</source>
|
|
||||||
<target state="new">Specifies a NuGet package source to use during installation.</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="SourceOptionName">
|
|
||||||
<source>SOURCE</source>
|
|
||||||
<target state="new">SOURCE</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallationSucceeded">
|
|
||||||
<source>
|
|
||||||
The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0}</source>
|
|
||||||
<target state="new">
|
|
||||||
The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallCommandDefinition">
|
|
||||||
<source>Add item to development environment.</source>
|
|
||||||
<target state="new">Add item to development environment.</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallFailedNuget">
|
|
||||||
<source>Install failed. Failed to download package:
|
|
||||||
NuGet returned:
|
|
||||||
|
|
||||||
{0}</source>
|
|
||||||
<target state="new">Install failed. Failed to download package:
|
|
||||||
NuGet returned:
|
|
||||||
|
|
||||||
{0}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallFailedPackage">
|
|
||||||
<source>Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
|
||||||
The error was:
|
|
||||||
|
|
||||||
{0}</source>
|
|
||||||
<target state="new">Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
|
||||||
The error was:
|
|
||||||
|
|
||||||
{0}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallFullCommandNameLocalized">
|
<trans-unit id="InstallFullCommandNameLocalized">
|
||||||
<source>NetInstallCommand</source>
|
<source>.NET Install Command</source>
|
||||||
<target state="new">NetInstallCommand</target>
|
<target state="new">.NET Install Command</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="InstallToolCommandDefinition">
|
<trans-unit id="CommandDescription">
|
||||||
<source>Install tool for use on the command line.</source>
|
<source>Installs an item into the development environment.</source>
|
||||||
<target state="new">Install tool for use on the command line.</target>
|
<target state="new">Installs an item into the development environment.</target>
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolConfigfileDefinition">
|
|
||||||
<source>NuGet configuration file</source>
|
|
||||||
<target state="new">NuGet configuration file</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolFrameworkDefinition">
|
|
||||||
<source>Target framework to publish for. The target framework has to be specified in the project file.</source>
|
|
||||||
<target state="new">Target framework to publish for. The target framework has to be specified in the project file.</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolPackageIdDefinition">
|
|
||||||
<source>Package Id in NuGet</source>
|
|
||||||
<target state="new">Package Id in NuGet</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolVersionDefinition">
|
|
||||||
<source>Version of the package in NuGet</source>
|
|
||||||
<target state="new">Version of the package in NuGet</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="FailedToAddPackage">
|
|
||||||
<source>Failed to add package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</source>
|
|
||||||
<target state="new">Failed to add package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="FailedToRestorePackage">
|
|
||||||
<source>Failed to restore package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</source>
|
|
||||||
<target state="new">Failed to restore package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</target>
|
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,100 +2,14 @@
|
||||||
<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">
|
<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="../LocalizableStrings.resx">
|
<file datatype="xml" source-language="en" target-language="ja" original="../LocalizableStrings.resx">
|
||||||
<body>
|
<body>
|
||||||
<trans-unit id="SourceOptionDescription">
|
|
||||||
<source>Specifies a NuGet package source to use during installation.</source>
|
|
||||||
<target state="new">Specifies a NuGet package source to use during installation.</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="SourceOptionName">
|
|
||||||
<source>SOURCE</source>
|
|
||||||
<target state="new">SOURCE</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallationSucceeded">
|
|
||||||
<source>
|
|
||||||
The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0}</source>
|
|
||||||
<target state="new">
|
|
||||||
The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallCommandDefinition">
|
|
||||||
<source>Add item to development environment.</source>
|
|
||||||
<target state="new">Add item to development environment.</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallFailedNuget">
|
|
||||||
<source>Install failed. Failed to download package:
|
|
||||||
NuGet returned:
|
|
||||||
|
|
||||||
{0}</source>
|
|
||||||
<target state="new">Install failed. Failed to download package:
|
|
||||||
NuGet returned:
|
|
||||||
|
|
||||||
{0}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallFailedPackage">
|
|
||||||
<source>Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
|
||||||
The error was:
|
|
||||||
|
|
||||||
{0}</source>
|
|
||||||
<target state="new">Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
|
||||||
The error was:
|
|
||||||
|
|
||||||
{0}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallFullCommandNameLocalized">
|
<trans-unit id="InstallFullCommandNameLocalized">
|
||||||
<source>NetInstallCommand</source>
|
<source>.NET Install Command</source>
|
||||||
<target state="new">NetInstallCommand</target>
|
<target state="new">.NET Install Command</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="InstallToolCommandDefinition">
|
<trans-unit id="CommandDescription">
|
||||||
<source>Install tool for use on the command line.</source>
|
<source>Installs an item into the development environment.</source>
|
||||||
<target state="new">Install tool for use on the command line.</target>
|
<target state="new">Installs an item into the development environment.</target>
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolConfigfileDefinition">
|
|
||||||
<source>NuGet configuration file</source>
|
|
||||||
<target state="new">NuGet configuration file</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolFrameworkDefinition">
|
|
||||||
<source>Target framework to publish for. The target framework has to be specified in the project file.</source>
|
|
||||||
<target state="new">Target framework to publish for. The target framework has to be specified in the project file.</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolPackageIdDefinition">
|
|
||||||
<source>Package Id in NuGet</source>
|
|
||||||
<target state="new">Package Id in NuGet</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolVersionDefinition">
|
|
||||||
<source>Version of the package in NuGet</source>
|
|
||||||
<target state="new">Version of the package in NuGet</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="FailedToAddPackage">
|
|
||||||
<source>Failed to add package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</source>
|
|
||||||
<target state="new">Failed to add package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="FailedToRestorePackage">
|
|
||||||
<source>Failed to restore package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</source>
|
|
||||||
<target state="new">Failed to restore package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</target>
|
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,100 +2,14 @@
|
||||||
<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">
|
<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="../LocalizableStrings.resx">
|
<file datatype="xml" source-language="en" target-language="ko" original="../LocalizableStrings.resx">
|
||||||
<body>
|
<body>
|
||||||
<trans-unit id="SourceOptionDescription">
|
|
||||||
<source>Specifies a NuGet package source to use during installation.</source>
|
|
||||||
<target state="new">Specifies a NuGet package source to use during installation.</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="SourceOptionName">
|
|
||||||
<source>SOURCE</source>
|
|
||||||
<target state="new">SOURCE</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallationSucceeded">
|
|
||||||
<source>
|
|
||||||
The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0}</source>
|
|
||||||
<target state="new">
|
|
||||||
The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallCommandDefinition">
|
|
||||||
<source>Add item to development environment.</source>
|
|
||||||
<target state="new">Add item to development environment.</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallFailedNuget">
|
|
||||||
<source>Install failed. Failed to download package:
|
|
||||||
NuGet returned:
|
|
||||||
|
|
||||||
{0}</source>
|
|
||||||
<target state="new">Install failed. Failed to download package:
|
|
||||||
NuGet returned:
|
|
||||||
|
|
||||||
{0}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallFailedPackage">
|
|
||||||
<source>Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
|
||||||
The error was:
|
|
||||||
|
|
||||||
{0}</source>
|
|
||||||
<target state="new">Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
|
||||||
The error was:
|
|
||||||
|
|
||||||
{0}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallFullCommandNameLocalized">
|
<trans-unit id="InstallFullCommandNameLocalized">
|
||||||
<source>NetInstallCommand</source>
|
<source>.NET Install Command</source>
|
||||||
<target state="new">NetInstallCommand</target>
|
<target state="new">.NET Install Command</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="InstallToolCommandDefinition">
|
<trans-unit id="CommandDescription">
|
||||||
<source>Install tool for use on the command line.</source>
|
<source>Installs an item into the development environment.</source>
|
||||||
<target state="new">Install tool for use on the command line.</target>
|
<target state="new">Installs an item into the development environment.</target>
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolConfigfileDefinition">
|
|
||||||
<source>NuGet configuration file</source>
|
|
||||||
<target state="new">NuGet configuration file</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolFrameworkDefinition">
|
|
||||||
<source>Target framework to publish for. The target framework has to be specified in the project file.</source>
|
|
||||||
<target state="new">Target framework to publish for. The target framework has to be specified in the project file.</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolPackageIdDefinition">
|
|
||||||
<source>Package Id in NuGet</source>
|
|
||||||
<target state="new">Package Id in NuGet</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolVersionDefinition">
|
|
||||||
<source>Version of the package in NuGet</source>
|
|
||||||
<target state="new">Version of the package in NuGet</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="FailedToAddPackage">
|
|
||||||
<source>Failed to add package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</source>
|
|
||||||
<target state="new">Failed to add package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="FailedToRestorePackage">
|
|
||||||
<source>Failed to restore package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</source>
|
|
||||||
<target state="new">Failed to restore package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</target>
|
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,100 +2,14 @@
|
||||||
<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">
|
<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="../LocalizableStrings.resx">
|
<file datatype="xml" source-language="en" target-language="pl" original="../LocalizableStrings.resx">
|
||||||
<body>
|
<body>
|
||||||
<trans-unit id="SourceOptionDescription">
|
|
||||||
<source>Specifies a NuGet package source to use during installation.</source>
|
|
||||||
<target state="new">Specifies a NuGet package source to use during installation.</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="SourceOptionName">
|
|
||||||
<source>SOURCE</source>
|
|
||||||
<target state="new">SOURCE</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallationSucceeded">
|
|
||||||
<source>
|
|
||||||
The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0}</source>
|
|
||||||
<target state="new">
|
|
||||||
The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallCommandDefinition">
|
|
||||||
<source>Add item to development environment.</source>
|
|
||||||
<target state="new">Add item to development environment.</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallFailedNuget">
|
|
||||||
<source>Install failed. Failed to download package:
|
|
||||||
NuGet returned:
|
|
||||||
|
|
||||||
{0}</source>
|
|
||||||
<target state="new">Install failed. Failed to download package:
|
|
||||||
NuGet returned:
|
|
||||||
|
|
||||||
{0}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallFailedPackage">
|
|
||||||
<source>Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
|
||||||
The error was:
|
|
||||||
|
|
||||||
{0}</source>
|
|
||||||
<target state="new">Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
|
||||||
The error was:
|
|
||||||
|
|
||||||
{0}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallFullCommandNameLocalized">
|
<trans-unit id="InstallFullCommandNameLocalized">
|
||||||
<source>NetInstallCommand</source>
|
<source>.NET Install Command</source>
|
||||||
<target state="new">NetInstallCommand</target>
|
<target state="new">.NET Install Command</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="InstallToolCommandDefinition">
|
<trans-unit id="CommandDescription">
|
||||||
<source>Install tool for use on the command line.</source>
|
<source>Installs an item into the development environment.</source>
|
||||||
<target state="new">Install tool for use on the command line.</target>
|
<target state="new">Installs an item into the development environment.</target>
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolConfigfileDefinition">
|
|
||||||
<source>NuGet configuration file</source>
|
|
||||||
<target state="new">NuGet configuration file</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolFrameworkDefinition">
|
|
||||||
<source>Target framework to publish for. The target framework has to be specified in the project file.</source>
|
|
||||||
<target state="new">Target framework to publish for. The target framework has to be specified in the project file.</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolPackageIdDefinition">
|
|
||||||
<source>Package Id in NuGet</source>
|
|
||||||
<target state="new">Package Id in NuGet</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolVersionDefinition">
|
|
||||||
<source>Version of the package in NuGet</source>
|
|
||||||
<target state="new">Version of the package in NuGet</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="FailedToAddPackage">
|
|
||||||
<source>Failed to add package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</source>
|
|
||||||
<target state="new">Failed to add package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="FailedToRestorePackage">
|
|
||||||
<source>Failed to restore package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</source>
|
|
||||||
<target state="new">Failed to restore package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</target>
|
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,100 +2,14 @@
|
||||||
<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">
|
<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="../LocalizableStrings.resx">
|
<file datatype="xml" source-language="en" target-language="pt-BR" original="../LocalizableStrings.resx">
|
||||||
<body>
|
<body>
|
||||||
<trans-unit id="SourceOptionDescription">
|
|
||||||
<source>Specifies a NuGet package source to use during installation.</source>
|
|
||||||
<target state="new">Specifies a NuGet package source to use during installation.</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="SourceOptionName">
|
|
||||||
<source>SOURCE</source>
|
|
||||||
<target state="new">SOURCE</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallationSucceeded">
|
|
||||||
<source>
|
|
||||||
The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0}</source>
|
|
||||||
<target state="new">
|
|
||||||
The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallCommandDefinition">
|
|
||||||
<source>Add item to development environment.</source>
|
|
||||||
<target state="new">Add item to development environment.</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallFailedNuget">
|
|
||||||
<source>Install failed. Failed to download package:
|
|
||||||
NuGet returned:
|
|
||||||
|
|
||||||
{0}</source>
|
|
||||||
<target state="new">Install failed. Failed to download package:
|
|
||||||
NuGet returned:
|
|
||||||
|
|
||||||
{0}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallFailedPackage">
|
|
||||||
<source>Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
|
||||||
The error was:
|
|
||||||
|
|
||||||
{0}</source>
|
|
||||||
<target state="new">Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
|
||||||
The error was:
|
|
||||||
|
|
||||||
{0}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallFullCommandNameLocalized">
|
<trans-unit id="InstallFullCommandNameLocalized">
|
||||||
<source>NetInstallCommand</source>
|
<source>.NET Install Command</source>
|
||||||
<target state="new">NetInstallCommand</target>
|
<target state="new">.NET Install Command</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="InstallToolCommandDefinition">
|
<trans-unit id="CommandDescription">
|
||||||
<source>Install tool for use on the command line.</source>
|
<source>Installs an item into the development environment.</source>
|
||||||
<target state="new">Install tool for use on the command line.</target>
|
<target state="new">Installs an item into the development environment.</target>
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolConfigfileDefinition">
|
|
||||||
<source>NuGet configuration file</source>
|
|
||||||
<target state="new">NuGet configuration file</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolFrameworkDefinition">
|
|
||||||
<source>Target framework to publish for. The target framework has to be specified in the project file.</source>
|
|
||||||
<target state="new">Target framework to publish for. The target framework has to be specified in the project file.</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolPackageIdDefinition">
|
|
||||||
<source>Package Id in NuGet</source>
|
|
||||||
<target state="new">Package Id in NuGet</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolVersionDefinition">
|
|
||||||
<source>Version of the package in NuGet</source>
|
|
||||||
<target state="new">Version of the package in NuGet</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="FailedToAddPackage">
|
|
||||||
<source>Failed to add package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</source>
|
|
||||||
<target state="new">Failed to add package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="FailedToRestorePackage">
|
|
||||||
<source>Failed to restore package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</source>
|
|
||||||
<target state="new">Failed to restore package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</target>
|
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,100 +2,14 @@
|
||||||
<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">
|
<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="../LocalizableStrings.resx">
|
<file datatype="xml" source-language="en" target-language="ru" original="../LocalizableStrings.resx">
|
||||||
<body>
|
<body>
|
||||||
<trans-unit id="SourceOptionDescription">
|
|
||||||
<source>Specifies a NuGet package source to use during installation.</source>
|
|
||||||
<target state="new">Specifies a NuGet package source to use during installation.</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="SourceOptionName">
|
|
||||||
<source>SOURCE</source>
|
|
||||||
<target state="new">SOURCE</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallationSucceeded">
|
|
||||||
<source>
|
|
||||||
The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0}</source>
|
|
||||||
<target state="new">
|
|
||||||
The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallCommandDefinition">
|
|
||||||
<source>Add item to development environment.</source>
|
|
||||||
<target state="new">Add item to development environment.</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallFailedNuget">
|
|
||||||
<source>Install failed. Failed to download package:
|
|
||||||
NuGet returned:
|
|
||||||
|
|
||||||
{0}</source>
|
|
||||||
<target state="new">Install failed. Failed to download package:
|
|
||||||
NuGet returned:
|
|
||||||
|
|
||||||
{0}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallFailedPackage">
|
|
||||||
<source>Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
|
||||||
The error was:
|
|
||||||
|
|
||||||
{0}</source>
|
|
||||||
<target state="new">Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
|
||||||
The error was:
|
|
||||||
|
|
||||||
{0}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallFullCommandNameLocalized">
|
<trans-unit id="InstallFullCommandNameLocalized">
|
||||||
<source>NetInstallCommand</source>
|
<source>.NET Install Command</source>
|
||||||
<target state="new">NetInstallCommand</target>
|
<target state="new">.NET Install Command</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="InstallToolCommandDefinition">
|
<trans-unit id="CommandDescription">
|
||||||
<source>Install tool for use on the command line.</source>
|
<source>Installs an item into the development environment.</source>
|
||||||
<target state="new">Install tool for use on the command line.</target>
|
<target state="new">Installs an item into the development environment.</target>
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolConfigfileDefinition">
|
|
||||||
<source>NuGet configuration file</source>
|
|
||||||
<target state="new">NuGet configuration file</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolFrameworkDefinition">
|
|
||||||
<source>Target framework to publish for. The target framework has to be specified in the project file.</source>
|
|
||||||
<target state="new">Target framework to publish for. The target framework has to be specified in the project file.</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolPackageIdDefinition">
|
|
||||||
<source>Package Id in NuGet</source>
|
|
||||||
<target state="new">Package Id in NuGet</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolVersionDefinition">
|
|
||||||
<source>Version of the package in NuGet</source>
|
|
||||||
<target state="new">Version of the package in NuGet</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="FailedToAddPackage">
|
|
||||||
<source>Failed to add package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</source>
|
|
||||||
<target state="new">Failed to add package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="FailedToRestorePackage">
|
|
||||||
<source>Failed to restore package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</source>
|
|
||||||
<target state="new">Failed to restore package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</target>
|
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,100 +2,14 @@
|
||||||
<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">
|
<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="../LocalizableStrings.resx">
|
<file datatype="xml" source-language="en" target-language="tr" original="../LocalizableStrings.resx">
|
||||||
<body>
|
<body>
|
||||||
<trans-unit id="SourceOptionDescription">
|
|
||||||
<source>Specifies a NuGet package source to use during installation.</source>
|
|
||||||
<target state="new">Specifies a NuGet package source to use during installation.</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="SourceOptionName">
|
|
||||||
<source>SOURCE</source>
|
|
||||||
<target state="new">SOURCE</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallationSucceeded">
|
|
||||||
<source>
|
|
||||||
The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0}</source>
|
|
||||||
<target state="new">
|
|
||||||
The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallCommandDefinition">
|
|
||||||
<source>Add item to development environment.</source>
|
|
||||||
<target state="new">Add item to development environment.</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallFailedNuget">
|
|
||||||
<source>Install failed. Failed to download package:
|
|
||||||
NuGet returned:
|
|
||||||
|
|
||||||
{0}</source>
|
|
||||||
<target state="new">Install failed. Failed to download package:
|
|
||||||
NuGet returned:
|
|
||||||
|
|
||||||
{0}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallFailedPackage">
|
|
||||||
<source>Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
|
||||||
The error was:
|
|
||||||
|
|
||||||
{0}</source>
|
|
||||||
<target state="new">Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
|
||||||
The error was:
|
|
||||||
|
|
||||||
{0}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallFullCommandNameLocalized">
|
<trans-unit id="InstallFullCommandNameLocalized">
|
||||||
<source>NetInstallCommand</source>
|
<source>.NET Install Command</source>
|
||||||
<target state="new">NetInstallCommand</target>
|
<target state="new">.NET Install Command</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="InstallToolCommandDefinition">
|
<trans-unit id="CommandDescription">
|
||||||
<source>Install tool for use on the command line.</source>
|
<source>Installs an item into the development environment.</source>
|
||||||
<target state="new">Install tool for use on the command line.</target>
|
<target state="new">Installs an item into the development environment.</target>
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolConfigfileDefinition">
|
|
||||||
<source>NuGet configuration file</source>
|
|
||||||
<target state="new">NuGet configuration file</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolFrameworkDefinition">
|
|
||||||
<source>Target framework to publish for. The target framework has to be specified in the project file.</source>
|
|
||||||
<target state="new">Target framework to publish for. The target framework has to be specified in the project file.</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolPackageIdDefinition">
|
|
||||||
<source>Package Id in NuGet</source>
|
|
||||||
<target state="new">Package Id in NuGet</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolVersionDefinition">
|
|
||||||
<source>Version of the package in NuGet</source>
|
|
||||||
<target state="new">Version of the package in NuGet</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="FailedToAddPackage">
|
|
||||||
<source>Failed to add package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</source>
|
|
||||||
<target state="new">Failed to add package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="FailedToRestorePackage">
|
|
||||||
<source>Failed to restore package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</source>
|
|
||||||
<target state="new">Failed to restore package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</target>
|
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,100 +2,14 @@
|
||||||
<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">
|
<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="../LocalizableStrings.resx">
|
<file datatype="xml" source-language="en" target-language="zh-Hans" original="../LocalizableStrings.resx">
|
||||||
<body>
|
<body>
|
||||||
<trans-unit id="SourceOptionDescription">
|
|
||||||
<source>Specifies a NuGet package source to use during installation.</source>
|
|
||||||
<target state="new">Specifies a NuGet package source to use during installation.</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="SourceOptionName">
|
|
||||||
<source>SOURCE</source>
|
|
||||||
<target state="new">SOURCE</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallationSucceeded">
|
|
||||||
<source>
|
|
||||||
The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0}</source>
|
|
||||||
<target state="new">
|
|
||||||
The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallCommandDefinition">
|
|
||||||
<source>Add item to development environment.</source>
|
|
||||||
<target state="new">Add item to development environment.</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallFailedNuget">
|
|
||||||
<source>Install failed. Failed to download package:
|
|
||||||
NuGet returned:
|
|
||||||
|
|
||||||
{0}</source>
|
|
||||||
<target state="new">Install failed. Failed to download package:
|
|
||||||
NuGet returned:
|
|
||||||
|
|
||||||
{0}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallFailedPackage">
|
|
||||||
<source>Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
|
||||||
The error was:
|
|
||||||
|
|
||||||
{0}</source>
|
|
||||||
<target state="new">Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
|
||||||
The error was:
|
|
||||||
|
|
||||||
{0}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallFullCommandNameLocalized">
|
<trans-unit id="InstallFullCommandNameLocalized">
|
||||||
<source>NetInstallCommand</source>
|
<source>.NET Install Command</source>
|
||||||
<target state="new">NetInstallCommand</target>
|
<target state="new">.NET Install Command</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="InstallToolCommandDefinition">
|
<trans-unit id="CommandDescription">
|
||||||
<source>Install tool for use on the command line.</source>
|
<source>Installs an item into the development environment.</source>
|
||||||
<target state="new">Install tool for use on the command line.</target>
|
<target state="new">Installs an item into the development environment.</target>
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolConfigfileDefinition">
|
|
||||||
<source>NuGet configuration file</source>
|
|
||||||
<target state="new">NuGet configuration file</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolFrameworkDefinition">
|
|
||||||
<source>Target framework to publish for. The target framework has to be specified in the project file.</source>
|
|
||||||
<target state="new">Target framework to publish for. The target framework has to be specified in the project file.</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolPackageIdDefinition">
|
|
||||||
<source>Package Id in NuGet</source>
|
|
||||||
<target state="new">Package Id in NuGet</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolVersionDefinition">
|
|
||||||
<source>Version of the package in NuGet</source>
|
|
||||||
<target state="new">Version of the package in NuGet</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="FailedToAddPackage">
|
|
||||||
<source>Failed to add package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</source>
|
|
||||||
<target state="new">Failed to add package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="FailedToRestorePackage">
|
|
||||||
<source>Failed to restore package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</source>
|
|
||||||
<target state="new">Failed to restore package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</target>
|
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,100 +2,14 @@
|
||||||
<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">
|
<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="../LocalizableStrings.resx">
|
<file datatype="xml" source-language="en" target-language="zh-Hant" original="../LocalizableStrings.resx">
|
||||||
<body>
|
<body>
|
||||||
<trans-unit id="SourceOptionDescription">
|
|
||||||
<source>Specifies a NuGet package source to use during installation.</source>
|
|
||||||
<target state="new">Specifies a NuGet package source to use during installation.</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="SourceOptionName">
|
|
||||||
<source>SOURCE</source>
|
|
||||||
<target state="new">SOURCE</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallationSucceeded">
|
|
||||||
<source>
|
|
||||||
The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0}</source>
|
|
||||||
<target state="new">
|
|
||||||
The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallCommandDefinition">
|
|
||||||
<source>Add item to development environment.</source>
|
|
||||||
<target state="new">Add item to development environment.</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallFailedNuget">
|
|
||||||
<source>Install failed. Failed to download package:
|
|
||||||
NuGet returned:
|
|
||||||
|
|
||||||
{0}</source>
|
|
||||||
<target state="new">Install failed. Failed to download package:
|
|
||||||
NuGet returned:
|
|
||||||
|
|
||||||
{0}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallFailedPackage">
|
|
||||||
<source>Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
|
||||||
The error was:
|
|
||||||
|
|
||||||
{0}</source>
|
|
||||||
<target state="new">Install failed. The settings file in the tool's NuGet package is not valid. Please contact the owner of the NuGet package.
|
|
||||||
The error was:
|
|
||||||
|
|
||||||
{0}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallFullCommandNameLocalized">
|
<trans-unit id="InstallFullCommandNameLocalized">
|
||||||
<source>NetInstallCommand</source>
|
<source>.NET Install Command</source>
|
||||||
<target state="new">NetInstallCommand</target>
|
<target state="new">.NET Install Command</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="InstallToolCommandDefinition">
|
<trans-unit id="CommandDescription">
|
||||||
<source>Install tool for use on the command line.</source>
|
<source>Installs an item into the development environment.</source>
|
||||||
<target state="new">Install tool for use on the command line.</target>
|
<target state="new">Installs an item into the development environment.</target>
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolConfigfileDefinition">
|
|
||||||
<source>NuGet configuration file</source>
|
|
||||||
<target state="new">NuGet configuration file</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolFrameworkDefinition">
|
|
||||||
<source>Target framework to publish for. The target framework has to be specified in the project file.</source>
|
|
||||||
<target state="new">Target framework to publish for. The target framework has to be specified in the project file.</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolPackageIdDefinition">
|
|
||||||
<source>Package Id in NuGet</source>
|
|
||||||
<target state="new">Package Id in NuGet</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="InstallToolVersionDefinition">
|
|
||||||
<source>Version of the package in NuGet</source>
|
|
||||||
<target state="new">Version of the package in NuGet</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="FailedToAddPackage">
|
|
||||||
<source>Failed to add package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</source>
|
|
||||||
<target state="new">Failed to add package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</target>
|
|
||||||
<note />
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="FailedToRestorePackage">
|
|
||||||
<source>Failed to restore package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</source>
|
|
||||||
<target state="new">Failed to restore package.
|
|
||||||
WorkingDirectory: {0}
|
|
||||||
Arguments: {1}
|
|
||||||
Output: {2}{3}</target>
|
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -24,6 +24,7 @@
|
||||||
<EmbeddedResource Update="**\dotnet-clean\*.resx" Namespace="Microsoft.DotNet.Tools.Clean" />
|
<EmbeddedResource Update="**\dotnet-clean\*.resx" Namespace="Microsoft.DotNet.Tools.Clean" />
|
||||||
<EmbeddedResource Update="**\dotnet-help\*.resx" Namespace="Microsoft.DotNet.Tools.Help" />
|
<EmbeddedResource Update="**\dotnet-help\*.resx" Namespace="Microsoft.DotNet.Tools.Help" />
|
||||||
<EmbeddedResource Update="**\dotnet-install\*.resx" Namespace="Microsoft.DotNet.Tools.Install" />
|
<EmbeddedResource Update="**\dotnet-install\*.resx" Namespace="Microsoft.DotNet.Tools.Install" />
|
||||||
|
<EmbeddedResource Update="**\dotnet-install\dotnet-install-tool\*.resx" Namespace="Microsoft.DotNet.Tools.Install.Tool" />
|
||||||
<EmbeddedResource Update="**\dotnet-list\*.resx" Namespace="Microsoft.DotNet.Tools.List" />
|
<EmbeddedResource Update="**\dotnet-list\*.resx" Namespace="Microsoft.DotNet.Tools.List" />
|
||||||
<EmbeddedResource Update="**\dotnet-list-proj\*.resx" Namespace="Microsoft.DotNet.Tools.List.ProjectsInSolution" />
|
<EmbeddedResource Update="**\dotnet-list-proj\*.resx" Namespace="Microsoft.DotNet.Tools.List.ProjectsInSolution" />
|
||||||
<EmbeddedResource Update="**\dotnet-list-reference\*.resx" Namespace="Microsoft.DotNet.Tools.List.ProjectToProjectReferences" />
|
<EmbeddedResource Update="**\dotnet-list-reference\*.resx" Namespace="Microsoft.DotNet.Tools.List.ProjectToProjectReferences" />
|
||||||
|
|
Loading…
Reference in a new issue