Skip to content

Commit bcd4dde

Browse files
committed
Update command description
1 parent 78d45de commit bcd4dde

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

FluentLauncher.Infra.Localizer/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
List<string> Warnings = new();
1212
List<string> Errors = new();
1313

14-
var srcOption = new Option<string>("--src", "The source folder containing the CSV files") { IsRequired = true };
14+
var srcOption = new Option<string>("--src", "The source folder containing the .csv files") { IsRequired = true };
1515
var outOption = new Option<string>("--out", "The output folder for .resw files") { IsRequired = true };
1616
var languagesOption = new Option<IEnumerable<string>>("--languages", "All languages for translation") { IsRequired = true, AllowMultipleArgumentsPerToken = true };
1717
var defaultLanguageOption = new Option<string>("--default-language", () => "", "Default language of the app");
@@ -23,7 +23,7 @@
2323
result.ErrorMessage = "Default language must be in the list of languages";
2424
});
2525

26-
var rootCommand = new RootCommand("Convert CSV files to .resw files for UWP/WinUI localization");
26+
var rootCommand = new RootCommand("Convert .csv files to .resw files for UWP/WinUI localization");
2727
rootCommand.AddOption(srcOption);
2828
rootCommand.AddOption(outOption);
2929
rootCommand.AddOption(languagesOption);

0 commit comments

Comments
 (0)