naps2/NAPS2.Tools/Localization/ResxOptions.cs
2022-11-27 12:20:54 -08:00

11 lines
370 B
C#

using CommandLine;
using NAPS2.Tools.Project;
namespace NAPS2.Tools.Localization;
[Verb("resx", HelpText = "Update language resource (.resx) files based on the translation (.po) files")]
public class ResxOptions : OptionsBase
{
[Option('l', "lang", Required = false, HelpText = "Language to update (otherwise all)")]
public string? LanguageCode { get; set; }
}