マスタエディタ出力チェッカ:一部バッチファイルの日本語表示を英語表示に変更。

git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlToolsRED@374 7061adef-622a-194b-ae81-725974e89856
This commit is contained in:
nishikawa_takeshi 2009-07-09 08:23:51 +00:00
parent 59fb67c68c
commit e1610f1f67

View File

@ -15,8 +15,8 @@ rem
set usage=USAGE: %~nx0 INPUT_FILE... set usage=USAGE: %~nx0 INPUT_FILE...
if ""%1"" == """" ( if ""%1"" == """" (
echo %usage% echo %usage%
echo 使用方法が間違っています。 echo Illegal usage.
echo SRLもしくはXMLをドラッグアンドドロップしてください。 echo Drag and drop the SRL/XML.
echo. echo.
goto end goto end
) )
@ -32,14 +32,14 @@ set input_file=%~dpnx1
rem 処理本体 rem 処理本体
echo. echo.
echo %~nx1をチェックします。 echo check %~nx1
echo. echo.
fc /B "%org_file%" "%input_file%" fc /B "%org_file%" "%input_file%"
if not %ERRORLEVEL% == 0 ( if not %ERRORLEVEL% == 0 (
echo 異なるファイルです。 echo *** Different files. ***
) else ( ) else (
echo 相違はありません。 echo No difference.
) )
rem 入力ファイルが残っているならbeginに戻る rem 入力ファイルが残っているならbeginに戻る
@ -49,5 +49,5 @@ if ""%1"" neq """" goto begin
rem 終了 (キー入力待ち) rem 終了 (キー入力待ち)
:end :end
echo. echo.
echo すべてのチェックが終了しました。 echo All check end.
pause pause