From 003f4cadb62b18631035a502fa9d22d0cb73b8f7 Mon Sep 17 00:00:00 2001 From: walon Date: Thu, 26 Aug 2021 13:43:52 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E8=B0=83=E6=95=B4=E3=80=91cfg?= =?UTF-8?q?=E9=80=89=E9=A1=B9=20output=5Fl10n=5Fnot=5Fconverted=5Ftext=5Ff?= =?UTF-8?q?ile=E6=94=B9=E4=B8=BAoutput=5Fl10n=5Fnot=5Ftranslated=5Ftext=5F?= =?UTF-8?q?file?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Luban.Job.Cfg/Source/JobController.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Luban.Job.Cfg/Source/JobController.cs b/src/Luban.Job.Cfg/Source/JobController.cs index f53d227..8810605 100644 --- a/src/Luban.Job.Cfg/Source/JobController.cs +++ b/src/Luban.Job.Cfg/Source/JobController.cs @@ -64,7 +64,7 @@ namespace Luban.Job.Cfg [Option("l10n_text_field_name", Required = false, HelpText = "text value field name of text table files. default is text")] public string TextValueFieldName { get; set; } - [Option("output_l10n_not_converted_text_file", Required = false, HelpText = "the file save not converted l10n texts.")] + [Option("output_l10n_not_translated_text_file", Required = false, HelpText = "the file save not translated l10n texts.")] public string OutputNotConvertTextFile { get; set; } [Option("branch", Required = false, HelpText = "branch name")] @@ -194,7 +194,7 @@ namespace Luban.Job.Cfg if (string.IsNullOrWhiteSpace(options.InputTextTableFiles) ^ string.IsNullOrWhiteSpace(options.OutputNotConvertTextFile)) { - errMsg = "--input_l10n_text_files must be provided with --output_l10n_not_converted_text_file"; + errMsg = "--input_l10n_text_files must be provided with --output_l10n_not_translated_text_file"; return false; } }