マスタエディタ:ペアレンタルコントロールの表記を一部変更。

git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@2531 b08762b0-b915-fc4b-9d8c-17b2551a87ff
This commit is contained in:
nishikawa_takeshi 2008-09-17 01:19:42 +00:00
parent 61ed0dd515
commit 93d8e3bbc8
6 changed files with 17 additions and 17 deletions

View File

@ -1346,8 +1346,8 @@ private: System::Windows::Forms::DataGridViewTextBoxColumn^ colErrorCause;
//
this->combPEGI_BBFC->DropDownStyle = System::Windows::Forms::ComboBoxStyle::DropDownList;
this->combPEGI_BBFC->FormattingEnabled = true;
this->combPEGI_BBFC->Items->AddRange(gcnew cli::array< System::Object^ >(10) {L"年齢制限なし", L"3歳以上", L"4歳以上推奨", L"7歳以上", L"8歳以上推奨",
L"12歳以上", L"15歳以上", L"16歳以上", L"18歳以上", L"審査中"});
this->combPEGI_BBFC->Items->AddRange(gcnew cli::array< System::Object^ >(10) {L"年齢制限なし(全年齢)", L"3歳以上", L"4歳以上推奨", L"7歳以上",
L"8歳以上推奨", L"12歳以上", L"15歳以上", L"16歳以上", L"18歳以上", L"審査中"});
this->combPEGI_BBFC->Location = System::Drawing::Point(152, 205);
this->combPEGI_BBFC->Name = L"combPEGI_BBFC";
this->combPEGI_BBFC->Size = System::Drawing::Size(204, 20);
@ -1357,8 +1357,8 @@ private: System::Windows::Forms::DataGridViewTextBoxColumn^ colErrorCause;
//
this->combPEGI_PRT->DropDownStyle = System::Windows::Forms::ComboBoxStyle::DropDownList;
this->combPEGI_PRT->FormattingEnabled = true;
this->combPEGI_PRT->Items->AddRange(gcnew cli::array< System::Object^ >(7) {L"年齢制限なし", L"4歳以上", L"6歳以上", L"12歳以上", L"16歳以上",
L"18歳以上", L"審査中"});
this->combPEGI_PRT->Items->AddRange(gcnew cli::array< System::Object^ >(7) {L"年齢制限なし(全年齢)", L"4歳以上", L"6歳以上", L"12歳以上",
L"16歳以上", L"18歳以上", L"審査中"});
this->combPEGI_PRT->Location = System::Drawing::Point(152, 179);
this->combPEGI_PRT->Name = L"combPEGI_PRT";
this->combPEGI_PRT->Size = System::Drawing::Size(204, 20);
@ -1368,7 +1368,7 @@ private: System::Windows::Forms::DataGridViewTextBoxColumn^ colErrorCause;
//
this->combPEGI->DropDownStyle = System::Windows::Forms::ComboBoxStyle::DropDownList;
this->combPEGI->FormattingEnabled = true;
this->combPEGI->Items->AddRange(gcnew cli::array< System::Object^ >(7) {L"年齢制限なし", L"3歳以上", L"7歳以上", L"12歳以上", L"16歳以上",
this->combPEGI->Items->AddRange(gcnew cli::array< System::Object^ >(7) {L"年齢制限なし(全年齢)", L"3歳以上", L"7歳以上", L"12歳以上", L"16歳以上",
L"18<EFBFBD>ΈÈ<EFBFBD>ã", L"<EFBFBD>R<EFBFBD>¸"});
this->combPEGI->Location = System::Drawing::Point(152, 153);
this->combPEGI->Name = L"combPEGI";
@ -1390,7 +1390,7 @@ private: System::Windows::Forms::DataGridViewTextBoxColumn^ colErrorCause;
//
this->combESRB->DropDownStyle = System::Windows::Forms::ComboBoxStyle::DropDownList;
this->combESRB->FormattingEnabled = true;
this->combESRB->Items->AddRange(gcnew cli::array< System::Object^ >(7) {L"年齢制限なし", L"EC (3歳以上)", L"E (6歳以上)", L"E10+ (10歳以上)",
this->combESRB->Items->AddRange(gcnew cli::array< System::Object^ >(7) {L"年齢制限なし(全年齢)", L"EC (3歳以上)", L"E (6歳以上)", L"E10+ (10歳以上)",
L"T (13<31>ΈÈ<CB86>ã)", L"M (17<31>ΈÈ<CB86>ã)", L"<EFBFBD>R<EFBFBD>¸"});
this->combESRB->Location = System::Drawing::Point(152, 101);
this->combESRB->Name = L"combESRB";

View File

@ -189,7 +189,7 @@ void Form1::setDeliverableProperties(void)
if( this->combCERO->SelectedIndex < 0 )
{
if( this->stripItemJapanese->Checked == true )
this->hDeliv->hCERO = gcnew System::String("–¢’è‹`");
this->hDeliv->hCERO = gcnew System::String("•s‰Â");
else
this->hDeliv->hCERO = gcnew System::String("Undefined");
}
@ -200,7 +200,7 @@ void Form1::setDeliverableProperties(void)
if( this->combESRB->SelectedIndex < 0 )
{
if( this->stripItemJapanese->Checked == true )
this->hDeliv->hESRB = gcnew System::String("–¢’è‹`");
this->hDeliv->hESRB = gcnew System::String("•s‰Â");
else
this->hDeliv->hESRB = gcnew System::String("Undefined");
}
@ -211,7 +211,7 @@ void Form1::setDeliverableProperties(void)
if( this->combUSK->SelectedIndex < 0 )
{
if( this->stripItemJapanese->Checked == true )
this->hDeliv->hUSK = gcnew System::String("–¢’è‹`");
this->hDeliv->hUSK = gcnew System::String("•s‰Â");
else
this->hDeliv->hUSK = gcnew System::String("Undefined");
}
@ -222,7 +222,7 @@ void Form1::setDeliverableProperties(void)
if( this->combPEGI->SelectedIndex < 0 )
{
if( this->stripItemJapanese->Checked == true )
this->hDeliv->hPEGI = gcnew System::String("–¢’è‹`");
this->hDeliv->hPEGI = gcnew System::String("•s‰Â");
else
this->hDeliv->hPEGI = gcnew System::String("Undefined");
}
@ -233,7 +233,7 @@ void Form1::setDeliverableProperties(void)
if( this->combPEGI_PRT->SelectedIndex < 0 )
{
if( this->stripItemJapanese->Checked == true )
this->hDeliv->hPEGI_PRT = gcnew System::String("–¢’è‹`");
this->hDeliv->hPEGI_PRT = gcnew System::String("•s‰Â");
else
this->hDeliv->hPEGI_PRT = gcnew System::String("Undefined");
}
@ -244,7 +244,7 @@ void Form1::setDeliverableProperties(void)
if( this->combPEGI_BBFC->SelectedIndex < 0 )
{
if( this->stripItemJapanese->Checked == true )
this->hDeliv->hPEGI_BBFC = gcnew System::String("–¢’è‹`");
this->hDeliv->hPEGI_BBFC = gcnew System::String("•s‰Â");
else
this->hDeliv->hPEGI_BBFC = gcnew System::String("Undefined");
}
@ -255,7 +255,7 @@ void Form1::setDeliverableProperties(void)
if( this->combOFLC->SelectedIndex < 0 )
{
if( this->stripItemJapanese->Checked == true )
this->hDeliv->hOFLC = gcnew System::String("–¢’è‹`");
this->hDeliv->hOFLC = gcnew System::String("•s‰Â");
else
this->hDeliv->hOFLC = gcnew System::String("Undefined");
}

View File

@ -199,7 +199,7 @@ void Form1::changeJapanese(void)
index = this->combESRB->SelectedIndex;
this->combESRB->Items->Clear();
this->combESRB->Items->AddRange(gcnew cli::array< System::Object^ >(7)
{L"年齢制限なし", L"EC (3歳以上)", L"E (6歳以上)", L"E10+ (10歳以上)", L"T (13歳以上)", L"M (17歳以上)", L"審査中"});
{L"年齢制限なし(全年齢)", L"EC (3歳以上)", L"E (6歳以上)", L"E10+ (10歳以上)", L"T (13歳以上)", L"M (17歳以上)", L"審査中"});
this->combESRB->SelectedIndex = index;
index = this->combUSK->SelectedIndex;
@ -211,19 +211,19 @@ void Form1::changeJapanese(void)
index = this->combPEGI->SelectedIndex;
this->combPEGI->Items->Clear();
this->combPEGI->Items->AddRange(gcnew cli::array< System::Object^ >(7)
{L"年齢制限なし", L"3歳以上", L"7歳以上", L"12歳以上", L"16歳以上", L"18歳以上", L"審査中"});
{L"年齢制限なし(全年齢)", L"3歳以上", L"7歳以上", L"12歳以上", L"16歳以上", L"18歳以上", L"審査中"});
this->combPEGI->SelectedIndex = index;
index = this->combPEGI_PRT->SelectedIndex;
this->combPEGI_PRT->Items->Clear();
this->combPEGI_PRT->Items->AddRange(gcnew cli::array< System::Object^ >(7)
{L"年齢制限なし", L"4歳以上", L"6歳以上", L"12歳以上", L"16歳以上", L"18歳以上", L"審査中"});
{L"年齢制限なし(全年齢)", L"4歳以上", L"6歳以上", L"12歳以上", L"16歳以上", L"18歳以上", L"審査中"});
this->combPEGI_PRT->SelectedIndex = index;
index = this->combPEGI_BBFC->SelectedIndex;
this->combPEGI_BBFC->Items->Clear();
this->combPEGI_BBFC->Items->AddRange(gcnew cli::array< System::Object^ >(10)
{L"年齢制限なし", L"3歳以上", L"4歳以上推奨", L"7歳以上", L"8歳以上推奨", L"12歳以上", L"15歳以上", L"16歳以上", L"18歳以上", L"審査中"});
{L"年齢制限なし(全年齢)", L"3歳以上", L"4歳以上推奨", L"7歳以上", L"8歳以上推奨", L"12歳以上", L"15歳以上", L"16歳以上", L"18歳以上", L"審査中"});
this->combPEGI_BBFC->SelectedIndex = index;
index = this->combOFLC->SelectedIndex;