マスタエディタ:エラーメッセージを修正。

git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@2595 b08762b0-b915-fc4b-9d8c-17b2551a87ff
This commit is contained in:
nishikawa_takeshi 2008-10-07 09:23:23 +00:00
parent 18f2b92a29
commit 3ca72302d5
5 changed files with 7 additions and 7 deletions

View File

@ -3855,8 +3855,8 @@ private: System::Windows::Forms::CheckBox^ cboxIsPhotoEx;
// SRLが読み込まれていないときにはリードさせない
if( System::String::IsNullOrEmpty( this->tboxFile->Text ) )
{
this->errMsg( "ROMデータファイルがオープンされていませんので、提出確認書の作成ができません。",
"ROM data file has not opened yet. Therefore a submission sheet can't be made." );
this->errMsg( "ROMデータファイルがオープンされていませんので、マスターROMの作成ができません。",
"ROM data file has not opened yet. A master ROM data can't be made." );
return;
}
@ -3865,8 +3865,8 @@ private: System::Windows::Forms::CheckBox^ cboxIsPhotoEx;
this->hWarnList->Clear();
if( this->checkSrlForms() == false )
{
this->errMsg( "ROMデータに不正な設定があるためROMデータの保存ができません。",
"A ROM data and a submission sheet can't be saved, since it has illegal info." );
this->errMsg( "不正な設定があるためマスターROMの作成ができません。",
"Setting is illegal. A master ROM data can't be made." );
return;
}
@ -3965,14 +3965,14 @@ private: System::Windows::Forms::CheckBox^ cboxIsPhotoEx;
this->hWarnList->Clear();
if( this->checkSrlForms() == false )
{
this->errMsg( "ROMデータに不正な設定があるためROMデータの保存および提出確認書の作成ができません。",
"A ROM data and a submission sheet can't be saved, since it has illegal info." );
this->errMsg( "不正な設定があるため提出データの作成ができません。",
"Setting is illegal. Submission data can't be made." );
return;
}
if( this->checkDeliverableForms() == false )
{
this->errMsg( "入力情報に不足があるため提出確認書を作成できません。",
"Making a submission sheet can't be done, since your input is not enough." );
"Input is not enough. Submission data can't be made." );
return;
}