diff --git a/src/dotnet/commands/dotnet-install/InstallCommandParser.cs b/src/dotnet/commands/dotnet-install/InstallCommandParser.cs index 5f13f82d1..1d235f31d 100644 --- a/src/dotnet/commands/dotnet-install/InstallCommandParser.cs +++ b/src/dotnet/commands/dotnet-install/InstallCommandParser.cs @@ -11,7 +11,8 @@ namespace Microsoft.DotNet.Cli public static Command Install() { return Create.Command( - "install", LocalizableStrings.InstallCommandDefinition, + "install", + LocalizableStrings.CommandDescription, Accept.NoArguments(), CommonOptions.HelpOption(), InstallToolCommandParser.InstallTool()); diff --git a/src/dotnet/commands/dotnet-install/LocalizableStrings.resx b/src/dotnet/commands/dotnet-install/LocalizableStrings.resx index c34927fae..f2b812cd0 100644 --- a/src/dotnet/commands/dotnet-install/LocalizableStrings.resx +++ b/src/dotnet/commands/dotnet-install/LocalizableStrings.resx @@ -117,59 +117,10 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Specifies a NuGet package source to use during installation. - - - SOURCE - - - Failed to add package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} - - - Failed to restore package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} - - - -The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0} - - - Add item to development environment. - - - Install failed. Failed to download package: -NuGet returned: - -{0} - - - 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} - - NetInstallCommand + .NET Install Command - - Install tool for use on the command line. - - - NuGet configuration file - - - Target framework to publish for. The target framework has to be specified in the project file. - - - Package Id in NuGet - - - Version of the package in NuGet + + Installs an item into the development environment. \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-install/dotnet-install-tool/InstallToolCommandParser.cs b/src/dotnet/commands/dotnet-install/dotnet-install-tool/InstallToolCommandParser.cs index 2c5d0450a..6f6dc7335 100644 --- a/src/dotnet/commands/dotnet-install/dotnet-install-tool/InstallToolCommandParser.cs +++ b/src/dotnet/commands/dotnet-install/dotnet-install-tool/InstallToolCommandParser.cs @@ -2,7 +2,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. using Microsoft.DotNet.Cli.CommandLine; -using LocalizableStrings = Microsoft.DotNet.Tools.Install.LocalizableStrings; +using LocalizableStrings = Microsoft.DotNet.Tools.Install.Tool.LocalizableStrings; namespace Microsoft.DotNet.Cli { @@ -11,17 +11,17 @@ namespace Microsoft.DotNet.Cli public static Command InstallTool() { return Create.Command("tool", - LocalizableStrings.InstallToolCommandDefinition, + LocalizableStrings.CommandDescription, Accept.ExactlyOneArgument(o => "packageId") - .With(name: "packageId", - description: LocalizableStrings.InstallToolPackageIdDefinition), + .With(name: LocalizableStrings.PackageIdArgumentName, + description: LocalizableStrings.PackageIdArgumentDescription), Create.Option( "--version", - LocalizableStrings.InstallToolVersionDefinition, + LocalizableStrings.VersionOptionDescription, Accept.ExactlyOneArgument()), Create.Option( "--configfile", - LocalizableStrings.InstallToolConfigfileDefinition, + LocalizableStrings.ConfigFileOptionDescription, Accept.ExactlyOneArgument()), Create.Option( "--source", @@ -30,7 +30,7 @@ namespace Microsoft.DotNet.Cli .With(name: LocalizableStrings.SourceOptionName)), Create.Option( "-f|--framework", - LocalizableStrings.InstallToolFrameworkDefinition, + LocalizableStrings.FrameworkOptionDescription, Accept.ExactlyOneArgument()), CommonOptions.HelpOption()); } diff --git a/src/dotnet/commands/dotnet-install/dotnet-install-tool/LocalizableStrings.resx b/src/dotnet/commands/dotnet-install/dotnet-install-tool/LocalizableStrings.resx new file mode 100644 index 000000000..be65de057 --- /dev/null +++ b/src/dotnet/commands/dotnet-install/dotnet-install-tool/LocalizableStrings.resx @@ -0,0 +1,172 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + PACKAGE_ID + + + NuGet Package Id of the tool to install. + + + Version of the tool package in NuGet. + + + Specifies a NuGet package source to use during installation. + + + SOURCE + + + Installs a tool for use on the command line. + + + The NuGet configuration file to use. + + + The target framework to install the tool for. + + + Failed to add package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + + + Failed to restore package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + + + Install failed. Failed to download package: +NuGet returned: + +{0} + + + 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} + + + +The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0} + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-install/dotnet-install-tool/PackageToProjectFileAdder.cs b/src/dotnet/commands/dotnet-install/dotnet-install-tool/PackageToProjectFileAdder.cs index e661f3402..d66061a81 100644 --- a/src/dotnet/commands/dotnet-install/dotnet-install-tool/PackageToProjectFileAdder.cs +++ b/src/dotnet/commands/dotnet-install/dotnet-install-tool/PackageToProjectFileAdder.cs @@ -7,7 +7,6 @@ using Microsoft.DotNet.Cli; using Microsoft.DotNet.ToolPackage; using Microsoft.DotNet.Tools; using Microsoft.Extensions.EnvironmentAbstractions; -using LocalizableStrings = Microsoft.DotNet.Tools.Install.LocalizableStrings; namespace Microsoft.DotNet.Tools.Install.Tool { diff --git a/src/dotnet/commands/dotnet-install/dotnet-install-tool/ProjectRestorer.cs b/src/dotnet/commands/dotnet-install/dotnet-install-tool/ProjectRestorer.cs index 75d5481f9..01969bd83 100644 --- a/src/dotnet/commands/dotnet-install/dotnet-install-tool/ProjectRestorer.cs +++ b/src/dotnet/commands/dotnet-install/dotnet-install-tool/ProjectRestorer.cs @@ -9,7 +9,6 @@ using Microsoft.DotNet.Tools; using Microsoft.DotNet.ToolPackage; using Microsoft.DotNet.PlatformAbstractions; using Microsoft.Extensions.EnvironmentAbstractions; -using LocalizableStrings = Microsoft.DotNet.Tools.Install.LocalizableStrings; namespace Microsoft.DotNet.Tools.Install.Tool { diff --git a/src/dotnet/commands/dotnet-install/dotnet-install-tool/xlf/LocalizableStrings.cs.xlf b/src/dotnet/commands/dotnet-install/dotnet-install-tool/xlf/LocalizableStrings.cs.xlf new file mode 100644 index 000000000..ba9e3d0c7 --- /dev/null +++ b/src/dotnet/commands/dotnet-install/dotnet-install-tool/xlf/LocalizableStrings.cs.xlf @@ -0,0 +1,98 @@ + + + + + + Specifies a NuGet package source to use during installation. + Specifies a NuGet package source to use during installation. + + + + SOURCE + SOURCE + + + + +The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0} + +The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0} + + + + Failed to add package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + Failed to add package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + + + + Failed to restore package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + Failed to restore package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + + + + Install failed. Failed to download package: +NuGet returned: + +{0} + Install failed. Failed to download package: +NuGet returned: + +{0} + + + + 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} + 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} + + + + NuGet Package Id of the tool to install. + NuGet Package Id of the tool to install. + + + + Installs a tool for use on the command line. + Installs a tool for use on the command line. + + + + The NuGet configuration file to use. + The NuGet configuration file to use. + + + + The target framework to install the tool for. + The target framework to install the tool for. + + + + Version of the tool package in NuGet. + Version of the tool package in NuGet. + + + + PACKAGE_ID + PACKAGE_ID + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-install/dotnet-install-tool/xlf/LocalizableStrings.de.xlf b/src/dotnet/commands/dotnet-install/dotnet-install-tool/xlf/LocalizableStrings.de.xlf new file mode 100644 index 000000000..d35901b28 --- /dev/null +++ b/src/dotnet/commands/dotnet-install/dotnet-install-tool/xlf/LocalizableStrings.de.xlf @@ -0,0 +1,98 @@ + + + + + + Specifies a NuGet package source to use during installation. + Specifies a NuGet package source to use during installation. + + + + SOURCE + SOURCE + + + + +The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0} + +The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0} + + + + Failed to add package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + Failed to add package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + + + + Failed to restore package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + Failed to restore package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + + + + Install failed. Failed to download package: +NuGet returned: + +{0} + Install failed. Failed to download package: +NuGet returned: + +{0} + + + + 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} + 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} + + + + NuGet Package Id of the tool to install. + NuGet Package Id of the tool to install. + + + + Installs a tool for use on the command line. + Installs a tool for use on the command line. + + + + The NuGet configuration file to use. + The NuGet configuration file to use. + + + + The target framework to install the tool for. + The target framework to install the tool for. + + + + Version of the tool package in NuGet. + Version of the tool package in NuGet. + + + + PACKAGE_ID + PACKAGE_ID + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-install/dotnet-install-tool/xlf/LocalizableStrings.es.xlf b/src/dotnet/commands/dotnet-install/dotnet-install-tool/xlf/LocalizableStrings.es.xlf new file mode 100644 index 000000000..6c53a875e --- /dev/null +++ b/src/dotnet/commands/dotnet-install/dotnet-install-tool/xlf/LocalizableStrings.es.xlf @@ -0,0 +1,98 @@ + + + + + + Specifies a NuGet package source to use during installation. + Specifies a NuGet package source to use during installation. + + + + SOURCE + SOURCE + + + + +The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0} + +The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0} + + + + Failed to add package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + Failed to add package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + + + + Failed to restore package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + Failed to restore package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + + + + Install failed. Failed to download package: +NuGet returned: + +{0} + Install failed. Failed to download package: +NuGet returned: + +{0} + + + + 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} + 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} + + + + NuGet Package Id of the tool to install. + NuGet Package Id of the tool to install. + + + + Installs a tool for use on the command line. + Installs a tool for use on the command line. + + + + The NuGet configuration file to use. + The NuGet configuration file to use. + + + + The target framework to install the tool for. + The target framework to install the tool for. + + + + Version of the tool package in NuGet. + Version of the tool package in NuGet. + + + + PACKAGE_ID + PACKAGE_ID + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-install/dotnet-install-tool/xlf/LocalizableStrings.fr.xlf b/src/dotnet/commands/dotnet-install/dotnet-install-tool/xlf/LocalizableStrings.fr.xlf new file mode 100644 index 000000000..8a2c7fced --- /dev/null +++ b/src/dotnet/commands/dotnet-install/dotnet-install-tool/xlf/LocalizableStrings.fr.xlf @@ -0,0 +1,98 @@ + + + + + + Specifies a NuGet package source to use during installation. + Specifies a NuGet package source to use during installation. + + + + SOURCE + SOURCE + + + + +The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0} + +The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0} + + + + Failed to add package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + Failed to add package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + + + + Failed to restore package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + Failed to restore package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + + + + Install failed. Failed to download package: +NuGet returned: + +{0} + Install failed. Failed to download package: +NuGet returned: + +{0} + + + + 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} + 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} + + + + NuGet Package Id of the tool to install. + NuGet Package Id of the tool to install. + + + + Installs a tool for use on the command line. + Installs a tool for use on the command line. + + + + The NuGet configuration file to use. + The NuGet configuration file to use. + + + + The target framework to install the tool for. + The target framework to install the tool for. + + + + Version of the tool package in NuGet. + Version of the tool package in NuGet. + + + + PACKAGE_ID + PACKAGE_ID + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-install/dotnet-install-tool/xlf/LocalizableStrings.it.xlf b/src/dotnet/commands/dotnet-install/dotnet-install-tool/xlf/LocalizableStrings.it.xlf new file mode 100644 index 000000000..8c41ddae5 --- /dev/null +++ b/src/dotnet/commands/dotnet-install/dotnet-install-tool/xlf/LocalizableStrings.it.xlf @@ -0,0 +1,98 @@ + + + + + + Specifies a NuGet package source to use during installation. + Specifies a NuGet package source to use during installation. + + + + SOURCE + SOURCE + + + + +The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0} + +The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0} + + + + Failed to add package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + Failed to add package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + + + + Failed to restore package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + Failed to restore package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + + + + Install failed. Failed to download package: +NuGet returned: + +{0} + Install failed. Failed to download package: +NuGet returned: + +{0} + + + + 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} + 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} + + + + NuGet Package Id of the tool to install. + NuGet Package Id of the tool to install. + + + + Installs a tool for use on the command line. + Installs a tool for use on the command line. + + + + The NuGet configuration file to use. + The NuGet configuration file to use. + + + + The target framework to install the tool for. + The target framework to install the tool for. + + + + Version of the tool package in NuGet. + Version of the tool package in NuGet. + + + + PACKAGE_ID + PACKAGE_ID + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-install/dotnet-install-tool/xlf/LocalizableStrings.ja.xlf b/src/dotnet/commands/dotnet-install/dotnet-install-tool/xlf/LocalizableStrings.ja.xlf new file mode 100644 index 000000000..ca5a86c36 --- /dev/null +++ b/src/dotnet/commands/dotnet-install/dotnet-install-tool/xlf/LocalizableStrings.ja.xlf @@ -0,0 +1,98 @@ + + + + + + Specifies a NuGet package source to use during installation. + Specifies a NuGet package source to use during installation. + + + + SOURCE + SOURCE + + + + +The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0} + +The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0} + + + + Failed to add package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + Failed to add package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + + + + Failed to restore package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + Failed to restore package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + + + + Install failed. Failed to download package: +NuGet returned: + +{0} + Install failed. Failed to download package: +NuGet returned: + +{0} + + + + 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} + 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} + + + + NuGet Package Id of the tool to install. + NuGet Package Id of the tool to install. + + + + Installs a tool for use on the command line. + Installs a tool for use on the command line. + + + + The NuGet configuration file to use. + The NuGet configuration file to use. + + + + The target framework to install the tool for. + The target framework to install the tool for. + + + + Version of the tool package in NuGet. + Version of the tool package in NuGet. + + + + PACKAGE_ID + PACKAGE_ID + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-install/dotnet-install-tool/xlf/LocalizableStrings.ko.xlf b/src/dotnet/commands/dotnet-install/dotnet-install-tool/xlf/LocalizableStrings.ko.xlf new file mode 100644 index 000000000..f240e1421 --- /dev/null +++ b/src/dotnet/commands/dotnet-install/dotnet-install-tool/xlf/LocalizableStrings.ko.xlf @@ -0,0 +1,98 @@ + + + + + + Specifies a NuGet package source to use during installation. + Specifies a NuGet package source to use during installation. + + + + SOURCE + SOURCE + + + + +The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0} + +The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0} + + + + Failed to add package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + Failed to add package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + + + + Failed to restore package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + Failed to restore package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + + + + Install failed. Failed to download package: +NuGet returned: + +{0} + Install failed. Failed to download package: +NuGet returned: + +{0} + + + + 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} + 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} + + + + NuGet Package Id of the tool to install. + NuGet Package Id of the tool to install. + + + + Installs a tool for use on the command line. + Installs a tool for use on the command line. + + + + The NuGet configuration file to use. + The NuGet configuration file to use. + + + + The target framework to install the tool for. + The target framework to install the tool for. + + + + Version of the tool package in NuGet. + Version of the tool package in NuGet. + + + + PACKAGE_ID + PACKAGE_ID + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-install/dotnet-install-tool/xlf/LocalizableStrings.pl.xlf b/src/dotnet/commands/dotnet-install/dotnet-install-tool/xlf/LocalizableStrings.pl.xlf new file mode 100644 index 000000000..3793e06c4 --- /dev/null +++ b/src/dotnet/commands/dotnet-install/dotnet-install-tool/xlf/LocalizableStrings.pl.xlf @@ -0,0 +1,98 @@ + + + + + + Specifies a NuGet package source to use during installation. + Specifies a NuGet package source to use during installation. + + + + SOURCE + SOURCE + + + + +The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0} + +The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0} + + + + Failed to add package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + Failed to add package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + + + + Failed to restore package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + Failed to restore package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + + + + Install failed. Failed to download package: +NuGet returned: + +{0} + Install failed. Failed to download package: +NuGet returned: + +{0} + + + + 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} + 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} + + + + NuGet Package Id of the tool to install. + NuGet Package Id of the tool to install. + + + + Installs a tool for use on the command line. + Installs a tool for use on the command line. + + + + The NuGet configuration file to use. + The NuGet configuration file to use. + + + + The target framework to install the tool for. + The target framework to install the tool for. + + + + Version of the tool package in NuGet. + Version of the tool package in NuGet. + + + + PACKAGE_ID + PACKAGE_ID + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-install/dotnet-install-tool/xlf/LocalizableStrings.pt-BR.xlf b/src/dotnet/commands/dotnet-install/dotnet-install-tool/xlf/LocalizableStrings.pt-BR.xlf new file mode 100644 index 000000000..f69d8f094 --- /dev/null +++ b/src/dotnet/commands/dotnet-install/dotnet-install-tool/xlf/LocalizableStrings.pt-BR.xlf @@ -0,0 +1,98 @@ + + + + + + Specifies a NuGet package source to use during installation. + Specifies a NuGet package source to use during installation. + + + + SOURCE + SOURCE + + + + +The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0} + +The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0} + + + + Failed to add package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + Failed to add package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + + + + Failed to restore package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + Failed to restore package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + + + + Install failed. Failed to download package: +NuGet returned: + +{0} + Install failed. Failed to download package: +NuGet returned: + +{0} + + + + 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} + 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} + + + + NuGet Package Id of the tool to install. + NuGet Package Id of the tool to install. + + + + Installs a tool for use on the command line. + Installs a tool for use on the command line. + + + + The NuGet configuration file to use. + The NuGet configuration file to use. + + + + The target framework to install the tool for. + The target framework to install the tool for. + + + + Version of the tool package in NuGet. + Version of the tool package in NuGet. + + + + PACKAGE_ID + PACKAGE_ID + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-install/dotnet-install-tool/xlf/LocalizableStrings.ru.xlf b/src/dotnet/commands/dotnet-install/dotnet-install-tool/xlf/LocalizableStrings.ru.xlf new file mode 100644 index 000000000..26dc69bf9 --- /dev/null +++ b/src/dotnet/commands/dotnet-install/dotnet-install-tool/xlf/LocalizableStrings.ru.xlf @@ -0,0 +1,98 @@ + + + + + + Specifies a NuGet package source to use during installation. + Specifies a NuGet package source to use during installation. + + + + SOURCE + SOURCE + + + + +The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0} + +The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0} + + + + Failed to add package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + Failed to add package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + + + + Failed to restore package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + Failed to restore package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + + + + Install failed. Failed to download package: +NuGet returned: + +{0} + Install failed. Failed to download package: +NuGet returned: + +{0} + + + + 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} + 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} + + + + NuGet Package Id of the tool to install. + NuGet Package Id of the tool to install. + + + + Installs a tool for use on the command line. + Installs a tool for use on the command line. + + + + The NuGet configuration file to use. + The NuGet configuration file to use. + + + + The target framework to install the tool for. + The target framework to install the tool for. + + + + Version of the tool package in NuGet. + Version of the tool package in NuGet. + + + + PACKAGE_ID + PACKAGE_ID + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-install/dotnet-install-tool/xlf/LocalizableStrings.tr.xlf b/src/dotnet/commands/dotnet-install/dotnet-install-tool/xlf/LocalizableStrings.tr.xlf new file mode 100644 index 000000000..6bae1cd70 --- /dev/null +++ b/src/dotnet/commands/dotnet-install/dotnet-install-tool/xlf/LocalizableStrings.tr.xlf @@ -0,0 +1,98 @@ + + + + + + Specifies a NuGet package source to use during installation. + Specifies a NuGet package source to use during installation. + + + + SOURCE + SOURCE + + + + +The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0} + +The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0} + + + + Failed to add package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + Failed to add package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + + + + Failed to restore package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + Failed to restore package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + + + + Install failed. Failed to download package: +NuGet returned: + +{0} + Install failed. Failed to download package: +NuGet returned: + +{0} + + + + 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} + 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} + + + + NuGet Package Id of the tool to install. + NuGet Package Id of the tool to install. + + + + Installs a tool for use on the command line. + Installs a tool for use on the command line. + + + + The NuGet configuration file to use. + The NuGet configuration file to use. + + + + The target framework to install the tool for. + The target framework to install the tool for. + + + + Version of the tool package in NuGet. + Version of the tool package in NuGet. + + + + PACKAGE_ID + PACKAGE_ID + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-install/dotnet-install-tool/xlf/LocalizableStrings.zh-Hans.xlf b/src/dotnet/commands/dotnet-install/dotnet-install-tool/xlf/LocalizableStrings.zh-Hans.xlf new file mode 100644 index 000000000..eb296ccc5 --- /dev/null +++ b/src/dotnet/commands/dotnet-install/dotnet-install-tool/xlf/LocalizableStrings.zh-Hans.xlf @@ -0,0 +1,98 @@ + + + + + + Specifies a NuGet package source to use during installation. + Specifies a NuGet package source to use during installation. + + + + SOURCE + SOURCE + + + + +The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0} + +The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0} + + + + Failed to add package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + Failed to add package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + + + + Failed to restore package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + Failed to restore package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + + + + Install failed. Failed to download package: +NuGet returned: + +{0} + Install failed. Failed to download package: +NuGet returned: + +{0} + + + + 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} + 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} + + + + NuGet Package Id of the tool to install. + NuGet Package Id of the tool to install. + + + + Installs a tool for use on the command line. + Installs a tool for use on the command line. + + + + The NuGet configuration file to use. + The NuGet configuration file to use. + + + + The target framework to install the tool for. + The target framework to install the tool for. + + + + Version of the tool package in NuGet. + Version of the tool package in NuGet. + + + + PACKAGE_ID + PACKAGE_ID + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-install/dotnet-install-tool/xlf/LocalizableStrings.zh-Hant.xlf b/src/dotnet/commands/dotnet-install/dotnet-install-tool/xlf/LocalizableStrings.zh-Hant.xlf new file mode 100644 index 000000000..6ab077f0a --- /dev/null +++ b/src/dotnet/commands/dotnet-install/dotnet-install-tool/xlf/LocalizableStrings.zh-Hant.xlf @@ -0,0 +1,98 @@ + + + + + + Specifies a NuGet package source to use during installation. + Specifies a NuGet package source to use during installation. + + + + SOURCE + SOURCE + + + + +The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0} + +The installation succeeded. If there are no further instructions, you can type the following command in shell directly to invoke: {0} + + + + Failed to add package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + Failed to add package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + + + + Failed to restore package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + Failed to restore package. +WorkingDirectory: {0} +Arguments: {1} +Output: {2}{3} + + + + Install failed. Failed to download package: +NuGet returned: + +{0} + Install failed. Failed to download package: +NuGet returned: + +{0} + + + + 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} + 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} + + + + NuGet Package Id of the tool to install. + NuGet Package Id of the tool to install. + + + + Installs a tool for use on the command line. + Installs a tool for use on the command line. + + + + The NuGet configuration file to use. + The NuGet configuration file to use. + + + + The target framework to install the tool for. + The target framework to install the tool for. + + + + Version of the tool package in NuGet. + Version of the tool package in NuGet. + + + + PACKAGE_ID + PACKAGE_ID + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.cs.xlf b/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.cs.xlf index fab34cb7d..bb384516d 100644 --- a/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.cs.xlf +++ b/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.cs.xlf @@ -2,100 +2,14 @@ - - Specifies a NuGet package source to use during installation. - Specifies a NuGet package source to use during installation. - - - - SOURCE - SOURCE - - - - -The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0} - -The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0} - - - - Add item to development environment. - Add item to development environment. - - - - Install failed. Failed to download package: -NuGet returned: - -{0} - Install failed. Failed to download package: -NuGet returned: - -{0} - - - - 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} - 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} - - - NetInstallCommand - NetInstallCommand + .NET Install Command + .NET Install Command - - Install tool for use on the command line. - Install tool for use on the command line. - - - - NuGet configuration file - NuGet configuration file - - - - Target framework to publish for. The target framework has to be specified in the project file. - Target framework to publish for. The target framework has to be specified in the project file. - - - - Package Id in NuGet - Package Id in NuGet - - - - Version of the package in NuGet - Version of the package in NuGet - - - - Failed to add package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} - Failed to add package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} - - - - Failed to restore package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} - Failed to restore package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} + + Installs an item into the development environment. + Installs an item into the development environment. diff --git a/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.de.xlf b/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.de.xlf index d2c9b0f0f..f8ec0ecae 100644 --- a/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.de.xlf +++ b/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.de.xlf @@ -2,100 +2,14 @@ - - Specifies a NuGet package source to use during installation. - Specifies a NuGet package source to use during installation. - - - - SOURCE - SOURCE - - - - -The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0} - -The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0} - - - - Add item to development environment. - Add item to development environment. - - - - Install failed. Failed to download package: -NuGet returned: - -{0} - Install failed. Failed to download package: -NuGet returned: - -{0} - - - - 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} - 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} - - - NetInstallCommand - NetInstallCommand + .NET Install Command + .NET Install Command - - Install tool for use on the command line. - Install tool for use on the command line. - - - - NuGet configuration file - NuGet configuration file - - - - Target framework to publish for. The target framework has to be specified in the project file. - Target framework to publish for. The target framework has to be specified in the project file. - - - - Package Id in NuGet - Package Id in NuGet - - - - Version of the package in NuGet - Version of the package in NuGet - - - - Failed to add package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} - Failed to add package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} - - - - Failed to restore package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} - Failed to restore package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} + + Installs an item into the development environment. + Installs an item into the development environment. diff --git a/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.es.xlf b/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.es.xlf index c054d5654..3fc8d1535 100644 --- a/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.es.xlf +++ b/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.es.xlf @@ -2,100 +2,14 @@ - - Specifies a NuGet package source to use during installation. - Specifies a NuGet package source to use during installation. - - - - SOURCE - SOURCE - - - - -The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0} - -The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0} - - - - Add item to development environment. - Add item to development environment. - - - - Install failed. Failed to download package: -NuGet returned: - -{0} - Install failed. Failed to download package: -NuGet returned: - -{0} - - - - 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} - 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} - - - NetInstallCommand - NetInstallCommand + .NET Install Command + .NET Install Command - - Install tool for use on the command line. - Install tool for use on the command line. - - - - NuGet configuration file - NuGet configuration file - - - - Target framework to publish for. The target framework has to be specified in the project file. - Target framework to publish for. The target framework has to be specified in the project file. - - - - Package Id in NuGet - Package Id in NuGet - - - - Version of the package in NuGet - Version of the package in NuGet - - - - Failed to add package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} - Failed to add package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} - - - - Failed to restore package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} - Failed to restore package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} + + Installs an item into the development environment. + Installs an item into the development environment. diff --git a/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.fr.xlf b/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.fr.xlf index ee2e46a7d..ab8c7f1ed 100644 --- a/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.fr.xlf +++ b/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.fr.xlf @@ -2,100 +2,14 @@ - - Specifies a NuGet package source to use during installation. - Specifies a NuGet package source to use during installation. - - - - SOURCE - SOURCE - - - - -The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0} - -The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0} - - - - Add item to development environment. - Add item to development environment. - - - - Install failed. Failed to download package: -NuGet returned: - -{0} - Install failed. Failed to download package: -NuGet returned: - -{0} - - - - 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} - 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} - - - NetInstallCommand - NetInstallCommand + .NET Install Command + .NET Install Command - - Install tool for use on the command line. - Install tool for use on the command line. - - - - NuGet configuration file - NuGet configuration file - - - - Target framework to publish for. The target framework has to be specified in the project file. - Target framework to publish for. The target framework has to be specified in the project file. - - - - Package Id in NuGet - Package Id in NuGet - - - - Version of the package in NuGet - Version of the package in NuGet - - - - Failed to add package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} - Failed to add package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} - - - - Failed to restore package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} - Failed to restore package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} + + Installs an item into the development environment. + Installs an item into the development environment. diff --git a/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.it.xlf b/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.it.xlf index a7d5b126d..9177f06f6 100644 --- a/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.it.xlf +++ b/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.it.xlf @@ -2,100 +2,14 @@ - - Specifies a NuGet package source to use during installation. - Specifies a NuGet package source to use during installation. - - - - SOURCE - SOURCE - - - - -The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0} - -The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0} - - - - Add item to development environment. - Add item to development environment. - - - - Install failed. Failed to download package: -NuGet returned: - -{0} - Install failed. Failed to download package: -NuGet returned: - -{0} - - - - 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} - 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} - - - NetInstallCommand - NetInstallCommand + .NET Install Command + .NET Install Command - - Install tool for use on the command line. - Install tool for use on the command line. - - - - NuGet configuration file - NuGet configuration file - - - - Target framework to publish for. The target framework has to be specified in the project file. - Target framework to publish for. The target framework has to be specified in the project file. - - - - Package Id in NuGet - Package Id in NuGet - - - - Version of the package in NuGet - Version of the package in NuGet - - - - Failed to add package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} - Failed to add package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} - - - - Failed to restore package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} - Failed to restore package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} + + Installs an item into the development environment. + Installs an item into the development environment. diff --git a/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.ja.xlf b/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.ja.xlf index f219708d5..ed919e45f 100644 --- a/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.ja.xlf +++ b/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.ja.xlf @@ -2,100 +2,14 @@ - - Specifies a NuGet package source to use during installation. - Specifies a NuGet package source to use during installation. - - - - SOURCE - SOURCE - - - - -The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0} - -The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0} - - - - Add item to development environment. - Add item to development environment. - - - - Install failed. Failed to download package: -NuGet returned: - -{0} - Install failed. Failed to download package: -NuGet returned: - -{0} - - - - 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} - 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} - - - NetInstallCommand - NetInstallCommand + .NET Install Command + .NET Install Command - - Install tool for use on the command line. - Install tool for use on the command line. - - - - NuGet configuration file - NuGet configuration file - - - - Target framework to publish for. The target framework has to be specified in the project file. - Target framework to publish for. The target framework has to be specified in the project file. - - - - Package Id in NuGet - Package Id in NuGet - - - - Version of the package in NuGet - Version of the package in NuGet - - - - Failed to add package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} - Failed to add package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} - - - - Failed to restore package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} - Failed to restore package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} + + Installs an item into the development environment. + Installs an item into the development environment. diff --git a/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.ko.xlf b/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.ko.xlf index af93a3d33..5cb49a7d2 100644 --- a/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.ko.xlf +++ b/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.ko.xlf @@ -2,100 +2,14 @@ - - Specifies a NuGet package source to use during installation. - Specifies a NuGet package source to use during installation. - - - - SOURCE - SOURCE - - - - -The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0} - -The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0} - - - - Add item to development environment. - Add item to development environment. - - - - Install failed. Failed to download package: -NuGet returned: - -{0} - Install failed. Failed to download package: -NuGet returned: - -{0} - - - - 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} - 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} - - - NetInstallCommand - NetInstallCommand + .NET Install Command + .NET Install Command - - Install tool for use on the command line. - Install tool for use on the command line. - - - - NuGet configuration file - NuGet configuration file - - - - Target framework to publish for. The target framework has to be specified in the project file. - Target framework to publish for. The target framework has to be specified in the project file. - - - - Package Id in NuGet - Package Id in NuGet - - - - Version of the package in NuGet - Version of the package in NuGet - - - - Failed to add package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} - Failed to add package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} - - - - Failed to restore package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} - Failed to restore package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} + + Installs an item into the development environment. + Installs an item into the development environment. diff --git a/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.pl.xlf b/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.pl.xlf index f4cdeed56..0901ecbb6 100644 --- a/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.pl.xlf +++ b/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.pl.xlf @@ -2,100 +2,14 @@ - - Specifies a NuGet package source to use during installation. - Specifies a NuGet package source to use during installation. - - - - SOURCE - SOURCE - - - - -The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0} - -The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0} - - - - Add item to development environment. - Add item to development environment. - - - - Install failed. Failed to download package: -NuGet returned: - -{0} - Install failed. Failed to download package: -NuGet returned: - -{0} - - - - 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} - 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} - - - NetInstallCommand - NetInstallCommand + .NET Install Command + .NET Install Command - - Install tool for use on the command line. - Install tool for use on the command line. - - - - NuGet configuration file - NuGet configuration file - - - - Target framework to publish for. The target framework has to be specified in the project file. - Target framework to publish for. The target framework has to be specified in the project file. - - - - Package Id in NuGet - Package Id in NuGet - - - - Version of the package in NuGet - Version of the package in NuGet - - - - Failed to add package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} - Failed to add package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} - - - - Failed to restore package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} - Failed to restore package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} + + Installs an item into the development environment. + Installs an item into the development environment. diff --git a/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.pt-BR.xlf b/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.pt-BR.xlf index 61feb8e06..4470800f4 100644 --- a/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.pt-BR.xlf +++ b/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.pt-BR.xlf @@ -2,100 +2,14 @@ - - Specifies a NuGet package source to use during installation. - Specifies a NuGet package source to use during installation. - - - - SOURCE - SOURCE - - - - -The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0} - -The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0} - - - - Add item to development environment. - Add item to development environment. - - - - Install failed. Failed to download package: -NuGet returned: - -{0} - Install failed. Failed to download package: -NuGet returned: - -{0} - - - - 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} - 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} - - - NetInstallCommand - NetInstallCommand + .NET Install Command + .NET Install Command - - Install tool for use on the command line. - Install tool for use on the command line. - - - - NuGet configuration file - NuGet configuration file - - - - Target framework to publish for. The target framework has to be specified in the project file. - Target framework to publish for. The target framework has to be specified in the project file. - - - - Package Id in NuGet - Package Id in NuGet - - - - Version of the package in NuGet - Version of the package in NuGet - - - - Failed to add package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} - Failed to add package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} - - - - Failed to restore package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} - Failed to restore package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} + + Installs an item into the development environment. + Installs an item into the development environment. diff --git a/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.ru.xlf b/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.ru.xlf index b22f06fa1..7513958c2 100644 --- a/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.ru.xlf +++ b/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.ru.xlf @@ -2,100 +2,14 @@ - - Specifies a NuGet package source to use during installation. - Specifies a NuGet package source to use during installation. - - - - SOURCE - SOURCE - - - - -The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0} - -The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0} - - - - Add item to development environment. - Add item to development environment. - - - - Install failed. Failed to download package: -NuGet returned: - -{0} - Install failed. Failed to download package: -NuGet returned: - -{0} - - - - 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} - 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} - - - NetInstallCommand - NetInstallCommand + .NET Install Command + .NET Install Command - - Install tool for use on the command line. - Install tool for use on the command line. - - - - NuGet configuration file - NuGet configuration file - - - - Target framework to publish for. The target framework has to be specified in the project file. - Target framework to publish for. The target framework has to be specified in the project file. - - - - Package Id in NuGet - Package Id in NuGet - - - - Version of the package in NuGet - Version of the package in NuGet - - - - Failed to add package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} - Failed to add package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} - - - - Failed to restore package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} - Failed to restore package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} + + Installs an item into the development environment. + Installs an item into the development environment. diff --git a/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.tr.xlf b/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.tr.xlf index f52ea56f3..1c365d715 100644 --- a/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.tr.xlf +++ b/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.tr.xlf @@ -2,100 +2,14 @@ - - Specifies a NuGet package source to use during installation. - Specifies a NuGet package source to use during installation. - - - - SOURCE - SOURCE - - - - -The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0} - -The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0} - - - - Add item to development environment. - Add item to development environment. - - - - Install failed. Failed to download package: -NuGet returned: - -{0} - Install failed. Failed to download package: -NuGet returned: - -{0} - - - - 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} - 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} - - - NetInstallCommand - NetInstallCommand + .NET Install Command + .NET Install Command - - Install tool for use on the command line. - Install tool for use on the command line. - - - - NuGet configuration file - NuGet configuration file - - - - Target framework to publish for. The target framework has to be specified in the project file. - Target framework to publish for. The target framework has to be specified in the project file. - - - - Package Id in NuGet - Package Id in NuGet - - - - Version of the package in NuGet - Version of the package in NuGet - - - - Failed to add package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} - Failed to add package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} - - - - Failed to restore package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} - Failed to restore package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} + + Installs an item into the development environment. + Installs an item into the development environment. diff --git a/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.zh-Hans.xlf b/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.zh-Hans.xlf index 57744e0b6..425012172 100644 --- a/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.zh-Hans.xlf +++ b/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.zh-Hans.xlf @@ -2,100 +2,14 @@ - - Specifies a NuGet package source to use during installation. - Specifies a NuGet package source to use during installation. - - - - SOURCE - SOURCE - - - - -The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0} - -The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0} - - - - Add item to development environment. - Add item to development environment. - - - - Install failed. Failed to download package: -NuGet returned: - -{0} - Install failed. Failed to download package: -NuGet returned: - -{0} - - - - 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} - 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} - - - NetInstallCommand - NetInstallCommand + .NET Install Command + .NET Install Command - - Install tool for use on the command line. - Install tool for use on the command line. - - - - NuGet configuration file - NuGet configuration file - - - - Target framework to publish for. The target framework has to be specified in the project file. - Target framework to publish for. The target framework has to be specified in the project file. - - - - Package Id in NuGet - Package Id in NuGet - - - - Version of the package in NuGet - Version of the package in NuGet - - - - Failed to add package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} - Failed to add package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} - - - - Failed to restore package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} - Failed to restore package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} + + Installs an item into the development environment. + Installs an item into the development environment. diff --git a/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.zh-Hant.xlf b/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.zh-Hant.xlf index d60610a37..61c3b4237 100644 --- a/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.zh-Hant.xlf +++ b/src/dotnet/commands/dotnet-install/xlf/LocalizableStrings.zh-Hant.xlf @@ -2,100 +2,14 @@ - - Specifies a NuGet package source to use during installation. - Specifies a NuGet package source to use during installation. - - - - SOURCE - SOURCE - - - - -The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0} - -The installation succeeded. If there is no other instruction. You can type the following command in shell directly to invoke: {0} - - - - Add item to development environment. - Add item to development environment. - - - - Install failed. Failed to download package: -NuGet returned: - -{0} - Install failed. Failed to download package: -NuGet returned: - -{0} - - - - 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} - 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} - - - NetInstallCommand - NetInstallCommand + .NET Install Command + .NET Install Command - - Install tool for use on the command line. - Install tool for use on the command line. - - - - NuGet configuration file - NuGet configuration file - - - - Target framework to publish for. The target framework has to be specified in the project file. - Target framework to publish for. The target framework has to be specified in the project file. - - - - Package Id in NuGet - Package Id in NuGet - - - - Version of the package in NuGet - Version of the package in NuGet - - - - Failed to add package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} - Failed to add package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} - - - - Failed to restore package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} - Failed to restore package. -WorkingDirectory: {0} -Arguments: {1} -Output: {2}{3} + + Installs an item into the development environment. + Installs an item into the development environment. diff --git a/src/dotnet/dotnet.csproj b/src/dotnet/dotnet.csproj index 024586405..02b44c4c6 100644 --- a/src/dotnet/dotnet.csproj +++ b/src/dotnet/dotnet.csproj @@ -24,6 +24,7 @@ +