fix module error dialog text to make more sense

SVN revision: 74415
This commit is contained in:
Mike Blumenkrantz 2012-07-26 06:47:12 +00:00
parent 9762c491a1
commit 325aaa82ad
1 changed files with 2 additions and 2 deletions

View File

@ -510,13 +510,13 @@ _e_module_dialog_disable_show(const char *title, const char *body, E_Module *m)
if (!dia) return;
snprintf(buf, sizeof(buf), "%s<br>%s", body,
_("Would you like to unload this module?<br>"));
_("What action should be taken with this module?<br>"));
e_dialog_title_set(dia, title);
e_dialog_icon_set(dia, "enlightenment", 64);
e_dialog_text_set(dia, buf);
e_dialog_button_add(dia, _("Unload"), NULL, _e_module_cb_dialog_disable, m);
e_dialog_button_add(dia, _("No"), NULL, NULL, NULL);
e_dialog_button_add(dia, _("Keep"), NULL, NULL, NULL);
e_win_centered_set(dia->win, 1);
e_dialog_show(dia);
}