To resolve this problem, you must change line 37 of /wp-content/pluginssimplemodal-contact-form-smcf/smcf.php :
load_plugin_textdomain("smcf", false, SMCF_DIR . "/lang/");
it become :
load_plugin_textdomain('smcf', false, dirname( plugin_basename(__FILE__) ) . '/lang');
Good luck.