File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
FluentLauncher.Infra.Localizer Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 1111List < string > Warnings = new ( ) ;
1212List < 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 } ;
1515var outOption = new Option < string > ( "--out" , "The output folder for .resw files" ) { IsRequired = true } ;
1616var languagesOption = new Option < IEnumerable < string > > ( "--languages" , "All languages for translation" ) { IsRequired = true , AllowMultipleArgumentsPerToken = true } ;
1717var defaultLanguageOption = new Option < string > ( "--default-language" , ( ) => "" , "Default language of the app" ) ;
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" ) ;
2727rootCommand . AddOption ( srcOption ) ;
2828rootCommand . AddOption ( outOption ) ;
2929rootCommand . AddOption ( languagesOption ) ;
You can’t perform that action at this time.
0 commit comments