Skip to content

Commit 33443f1

Browse files
committed
Update translations
1 parent 2902f08 commit 33443f1

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
@@ -2472,4 +2472,7 @@ To display a value, specify the corresponding command-line option without provid
24722472
<data name="ZeroTestsRan" xml:space="preserve">
24732473
<value>Zero tests ran</value>
24742474
</data>
2475+
<data name="ToolRunFromSourceOptionDescription" xml:space="preserve">
2476+
<value>Executes a tool from source without permanently installing it. </value>
2477+
</data>
24752478
</root>

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

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

27-
public static readonly CliOption<bool> FromSourceOption = new("--from-source");
27+
public static readonly CliOption<bool> FromSourceOption = new("--from-source")
28+
{
29+
Description = CliCommandStrings.ToolRunFromSourceOptionDescription,
30+
Arity = ArgumentArity.Zero
31+
};
2832

2933
private static readonly CliCommand Command = ConstructCommand();
3034

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)