From 8f0a2d783c9d2a5593c947e02d5a2a8dee9d20a5 Mon Sep 17 00:00:00 2001 From: Chidambar Zinnoury Date: Sun, 15 Jul 2012 11:41:03 +0000 Subject: [PATCH] e: forgot to set those strings as translatable. SVN revision: 73875 --- src/bin/e_moveresize.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/e_moveresize.c b/src/bin/e_moveresize.c index 1602da3f0..7d7134160 100644 --- a/src/bin/e_moveresize.c +++ b/src/bin/e_moveresize.c @@ -93,7 +93,7 @@ _e_resize_begin(void *data __UNUSED__, void *border) e_popup_show(_disp_pop); 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); e_popup_move_resize(_disp_pop, @@ -150,7 +150,7 @@ _e_resize_update(void *data __UNUSED__, void *border) e_popup_show(_disp_pop); 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); }