From 22f3777e327812cdd840effe966a48adeeafcf18 Mon Sep 17 00:00:00 2001 From: Christopher Michael Date: Sun, 11 Jun 2006 13:20:35 +0000 Subject: [PATCH] Fix translation problem in box config. gettext returns authors and other junk on _("") so replace with "". SVN revision: 23377 --- e_mod_config_box.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e_mod_config_box.c b/e_mod_config_box.c index c32533a..8c0af87 100644 --- a/e_mod_config_box.c +++ b/e_mod_config_box.c @@ -179,7 +179,7 @@ _basic_create_widgets(E_Config_Dialog *cfd, Evas *evas, E_Config_Dialog_Data *cf ob = e_widget_label_add(evas, _("Use SSL:")); e_widget_frametable_object_append(of, ob, 0, 1, 1, 1, 0, 0, 1, 0); - ob = e_widget_check_add(evas, _(""), &(cfdata->ssl)); + ob = e_widget_check_add(evas, "", &(cfdata->ssl)); e_widget_frametable_object_append(of, ob, 1, 1, 1, 1, 0, 0, 1, 0); e_widget_list_object_append(o, of, 1, 1, 0.5);