diff --git a/src/dotnet/commands/dotnet-tool/install/LocalizableStrings.resx b/src/dotnet/commands/dotnet-tool/install/LocalizableStrings.resx
index af448e1e9..9705509b6 100644
--- a/src/dotnet/commands/dotnet-tool/install/LocalizableStrings.resx
+++ b/src/dotnet/commands/dotnet-tool/install/LocalizableStrings.resx
@@ -161,6 +161,9 @@ Tool '{1}' (version '{2}') was successfully installed.
The settings file in the tool's NuGet package is invalid: {0}
+ Tool '{0}' failed to install.
+
+
Tool '{0}' failed to install. You may need to specify the version using
dotnet tool install -g {0} --version <version>
@@ -189,4 +192,4 @@ Tool '{1}' (version '{2}') was successfully installed.
Location where the tool will be installed.
-
\ No newline at end of file
+
diff --git a/src/dotnet/commands/dotnet-tool/install/ToolInstallCommandLowLevelErrorConverter.cs b/src/dotnet/commands/dotnet-tool/install/ToolInstallCommandLowLevelErrorConverter.cs
index e1596b0bb..b73409a32 100644
--- a/src/dotnet/commands/dotnet-tool/install/ToolInstallCommandLowLevelErrorConverter.cs
+++ b/src/dotnet/commands/dotnet-tool/install/ToolInstallCommandLowLevelErrorConverter.cs
@@ -18,7 +18,7 @@ namespace Microsoft.DotNet.Tools.Tool.Install
userFacingMessages = new[]
{
ex.Message,
- string.Format(LocalizableStrings.ToolInstallationFailed, packageId),
+ string.Format(LocalizableStrings.ToolInstallationFailedWithExplicitVersionGuide, packageId),
};
}
else if (ex is ToolConfigurationException)
diff --git a/src/dotnet/commands/dotnet-tool/install/xlf/LocalizableStrings.cs.xlf b/src/dotnet/commands/dotnet-tool/install/xlf/LocalizableStrings.cs.xlf
index 6d683ff31..be64b6196 100644
--- a/src/dotnet/commands/dotnet-tool/install/xlf/LocalizableStrings.cs.xlf
+++ b/src/dotnet/commands/dotnet-tool/install/xlf/LocalizableStrings.cs.xlf
@@ -60,9 +60,7 @@ Nástroj {1} (verze {2}) byl úspěšně nainstalován.
- Tool '{0}' failed to install. You may need to specify the version using
-
- dotnet tool install -g {0} --version <version>
+ Tool '{0}' failed to install.Nástroj {0} se nepodařilo nainstalovat.
@@ -121,6 +119,15 @@ Nástroj {1} (verze {2}) byl úspěšně nainstalován.
SOURCE_FEED
+
+ Tool '{0}' failed to install. You may need to specify the version using
+
+ dotnet tool install -g {0} --version <version>
+ Tool '{0}' failed to install. You may need to specify the version using
+
+ dotnet tool install -g {0} --version <version>
+
+