Revision | 5347 (tree) |
---|---|
Time | 2013-07-27 23:15:51 |
Author | (del#1144) |
i18n 箇所を追加
@@ -188,9 +188,10 @@ | ||
188 | 188 | // メッセージボックスをキャンセルすると、マクロの終了とする。 |
189 | 189 | // (2008.8.5 yutaka) |
190 | 190 | int ret; |
191 | - ret = MessageBox( | |
192 | - "Are you sure that you want to halt this macro script?", | |
193 | - "MACRO: confirmation", MB_YESNO | MB_ICONWARNING | MB_DEFBUTTON2); | |
191 | + char uimsg[MAX_UIMSG], uimsg2[MAX_UIMSG]; | |
192 | + get_lang_msg("MSG_MACRO_CONF", uimsg, sizeof(uimsg), "MACRO: confirmation", UILanguageFile); | |
193 | + get_lang_msg("MSG_MACRO_HALT_SCRIPT", uimsg2, sizeof(uimsg2), "Are you sure that you want to halt this macro script?", UILanguageFile); | |
194 | + ret = MessageBox(uimsg2, uimsg, MB_YESNO | MB_ICONWARNING | MB_DEFBUTTON2); | |
194 | 195 | if (ret == IDYES) { |
195 | 196 | if (YesNoFlag == TRUE) { |
196 | 197 | EndDialog(IDCLOSE); |