Skip to content

Commit 7706c72

Browse files
edvilmedsplaisted
authored andcommitted
Update translations
1 parent 2b2e18c commit 7706c72

15 files changed

+73
-1
lines changed

src/Cli/dotnet/Commands/CliCommandStrings.resx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2476,4 +2476,7 @@ To display a value, specify the corresponding command-line option without provid
24762476
<data name="SolutionAddReferencedProjectsOptionDescription" xml:space="preserve">
24772477
<value>Recursively add projects' ReferencedProjects to solution</value>
24782478
</data>
2479+
<data name="ToolRunFromSourceOptionDescription" xml:space="preserve">
2480+
<value>Executes a tool from source without permanently installing it. </value>
2481+
</data>
24792482
</root>

src/Cli/dotnet/Commands/Tool/Run/ToolRunCommandParser.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,11 @@ internal static class ToolRunCommandParser
2626
Arity = ArgumentArity.Zero
2727
};
2828

29-
public static readonly Option<bool> FromSourceOption = new("--from-source");
29+
public static readonly Option<bool> FromSourceOption = new("--from-source")
30+
{
31+
Description = CliCommandStrings.ToolRunFromSourceOptionDescription,
32+
Arity = ArgumentArity.Zero
33+
};
3034

3135
private static readonly Command Command = ConstructCommand();
3236

src/Cli/dotnet/Commands/xlf/CliCommandStrings.cs.xlf

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Cli/dotnet/Commands/xlf/CliCommandStrings.de.xlf

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Cli/dotnet/Commands/xlf/CliCommandStrings.es.xlf

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Cli/dotnet/Commands/xlf/CliCommandStrings.fr.xlf

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Cli/dotnet/Commands/xlf/CliCommandStrings.it.xlf

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Cli/dotnet/Commands/xlf/CliCommandStrings.ja.xlf

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Cli/dotnet/Commands/xlf/CliCommandStrings.ko.xlf

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Cli/dotnet/Commands/xlf/CliCommandStrings.pl.xlf

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)