e: forgot to set those strings as translatable.

SVN revision: 73875
This commit is contained in:
Chidambar Zinnoury 2012-07-15 11:41:03 +00:00
parent f45d356c62
commit 8f0a2d783c
1 changed files with 2 additions and 2 deletions

View File

@ -93,7 +93,7 @@ _e_resize_begin(void *data __UNUSED__, void *border)
e_popup_show(_disp_pop); e_popup_show(_disp_pop);
visible = 1; visible = 1;
} }
snprintf(buf, sizeof(buf), "%i×%i", w, h); snprintf(buf, sizeof(buf), _("%i×%i"), w, h);
edje_object_part_text_set(_obj, "e.text.label", buf); edje_object_part_text_set(_obj, "e.text.label", buf);
e_popup_move_resize(_disp_pop, e_popup_move_resize(_disp_pop,
@ -150,7 +150,7 @@ _e_resize_update(void *data __UNUSED__, void *border)
e_popup_show(_disp_pop); e_popup_show(_disp_pop);
visible = 1; visible = 1;
} }
snprintf(buf, sizeof(buf), "%i×%i", w, h); snprintf(buf, sizeof(buf), _("%i×%i"), w, h);
edje_object_part_text_set(_obj, "e.text.label", buf); edje_object_part_text_set(_obj, "e.text.label", buf);
} }