little modification to ease translators' work; "none" and "all" were used in many other contexts.

SVN revision: 49391
This commit is contained in:
Massimo Maiurana 2010-06-02 09:04:23 +00:00
parent adec397c6e
commit 9194f84c2e
1 changed files with 2 additions and 2 deletions

View File

@ -217,9 +217,9 @@ _advanced_create_widgets(E_Config_Dialog *cfd __UNUSED__, Evas *evas, E_Config_D
of = e_widget_framelist_add(evas, _("New Window Focus"), 0);
rg = e_widget_radio_group_new(&(cfdata->focus_setting));
ob = e_widget_radio_add(evas, _("None"), E_FOCUS_NONE, rg);
ob = e_widget_radio_add(evas, _("No window"), E_FOCUS_NONE, rg);
e_widget_framelist_object_append(of, ob);
ob = e_widget_radio_add(evas, _("All"), E_FOCUS_NEW_WINDOW, rg);
ob = e_widget_radio_add(evas, _("All windows"), E_FOCUS_NEW_WINDOW, rg);
e_widget_framelist_object_append(of, ob);
ob = e_widget_radio_add(evas, _("Only dialogs"), E_FOCUS_NEW_DIALOG, rg);
e_widget_framelist_object_append(of, ob);