i18n hunter strikes again :)

SVN revision: 26398
This commit is contained in:
Massimo Maiurana 2006-10-07 17:04:34 +00:00
parent 8eec3c6ca4
commit ce82cc6882
3 changed files with 4 additions and 4 deletions

View File

@ -495,8 +495,8 @@ _e_eap_editor_cb_icon_select(void *data1, void *data2)
e_dialog_content_set(dia, o, mw, mh);
/* buttons at the bottom */
e_dialog_button_add(dia, "OK", NULL, _e_eap_edit_cb_icon_select_ok, cfdata);
e_dialog_button_add(dia, "Cancel", NULL, _e_eap_edit_cb_icon_select_cancel, cfdata);
e_dialog_button_add(dia, _("OK"), NULL, _e_eap_edit_cb_icon_select_ok, cfdata);
e_dialog_button_add(dia, _("Cancel"), NULL, _e_eap_edit_cb_icon_select_cancel, cfdata);
e_dialog_resizable_set(dia, 1);
e_win_centered_set(dia->win, 1);
e_dialog_show(dia);

View File

@ -53,7 +53,7 @@ e_entry_dialog_show(const char *title, const char *icon, const char *text,
e_widget_min_size_get(o, &w, &h);
e_dialog_content_set(dia, o, w, h);
e_dialog_button_add(dia, !button_text ? _("Ok") : button_text, NULL, _e_entry_dialog_ok, ed);
e_dialog_button_add(dia, !button_text ? _("OK") : button_text, NULL, _e_entry_dialog_ok, ed);
e_dialog_button_add(dia, !button2_text ? _("Cancel") : button2_text, NULL, _e_entry_dialog_cancel, ed);
e_win_centered_set(dia->win, 1);

View File

@ -707,7 +707,7 @@ _e_wid_file_perms_get(mode_t st_mode, uid_t st_uid, gid_t st_gid)
if (!access)
return strdup(perms);
else
return strdup("Read-Write");
return strdup(_("Read-Write"));
}
static char *