diff --git a/src/bin/e_moveresize.c b/src/bin/e_moveresize.c index ef366a0aa..1602da3f0 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), "%ix%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), "%ix%i", w, h); + snprintf(buf, sizeof(buf), "%i×%i", w, h); edje_object_part_text_set(_obj, "e.text.label", buf); } diff --git a/src/bin/e_widget_filepreview.c b/src/bin/e_widget_filepreview.c index bd1923440..18f66571c 100644 --- a/src/bin/e_widget_filepreview.c +++ b/src/bin/e_widget_filepreview.c @@ -54,7 +54,7 @@ _e_wid_fprev_preview_update(void *data, Evas_Object *obj, void *event_info __UNU evas_object_del(o); if ((iw > 0) && (ih > 0)) { - snprintf(buf, sizeof(buf), "%ix%i", iw, ih); + snprintf(buf, sizeof(buf), _("%i×%i"), iw, ih); e_widget_entry_text_set(wd->o_preview_extra_entry, buf); } else if (wd->mime) diff --git a/src/modules/conf_display/e_int_config_display.c b/src/modules/conf_display/e_int_config_display.c index d6de603ee..6c03563ba 100644 --- a/src/modules/conf_display/e_int_config_display.c +++ b/src/modules/conf_display/e_int_config_display.c @@ -121,16 +121,22 @@ _surebox_text_fill(SureBox *sb) { if (sb->cfdata->has_rates) snprintf(buf, sizeof(buf), - _("Does this look OK? Save if it does, or Restore if not.
" - "If you do not press a button, the old resolution of
" - "%dx%d at %d Hz will be restored in %d seconds."), + P_("Does this look OK? Save if it does, or Restore if not.
" + "If you do not press a button, the old resolution of
" + "%d×%d at %d Hz will be restored in %d second.", + "Does this look OK? Save if it does, or Restore if not.
" + "If you do not press a button, the old resolution of
" + "%d×%d at %d Hz will be restored in %d seconds.", sb->iterations), sb->cfdata->orig_size.width, sb->cfdata->orig_size.height, sb->cfdata->orig_rate, sb->iterations); else snprintf(buf, sizeof(buf), - _("Does this look OK? Save if it does, or Restore if not.
" - "If you do not press a button, the old resolution of
" - "%dx%d will be restored in %d seconds."), + P_("Does this look OK? Save if it does, or Restore if not.
" + "If you do not press a button, the old resolution of
" + "%d×%d will be restored in %d second.", + "Does this look OK? Save if it does, or Restore if not.
" + "If you do not press a button, the old resolution of
" + "%d×%d will be restored in %d seconds.", sb->iterations), sb->cfdata->orig_size.width, sb->cfdata->orig_size.height, sb->iterations); } @@ -140,14 +146,14 @@ _surebox_text_fill(SureBox *sb) snprintf(buf, sizeof(buf), _("Does this look OK? Save if it does, or Restore if not.
" "If you do not press a button, the old resolution of
" - "%dx%d at %d Hz will be restored IMMEDIATELY."), + "%d×%d at %d Hz will be restored IMMEDIATELY."), sb->cfdata->orig_size.width, sb->cfdata->orig_size.height, sb->cfdata->orig_rate); else snprintf(buf, sizeof(buf), _("Does this look OK? Save if it does, or Restore if not.
" "If you do not press a button, the old resolution of
" - "%dx%d will be restored IMMEDIATELY."), + "%d×%d will be restored IMMEDIATELY."), sb->cfdata->orig_size.width, sb->cfdata->orig_size.height); } e_dialog_text_set(sb->dia, buf); @@ -527,7 +533,7 @@ _load_resolutions(E_Config_Dialog_Data *cfdata) Evas_Object *ob = NULL; res->id = i; - snprintf(buf, sizeof(buf), "%ix%i", res->size.width, res->size.height); + snprintf(buf, sizeof(buf), _("%i×%i"), res->size.width, res->size.height); if ((res->size.width == cfdata->orig_size.width) && (res->size.height == cfdata->orig_size.height)) diff --git a/src/modules/conf_randr/e_int_config_randr_resolution.c b/src/modules/conf_randr/e_int_config_randr_resolution.c index f1cc4b442..aea6ae86c 100644 --- a/src/modules/conf_randr/e_int_config_randr_resolution.c +++ b/src/modules/conf_randr/e_int_config_randr_resolution.c @@ -206,9 +206,9 @@ resolution_widget_update_list(E_Config_Randr_Dialog_Output_Dialog_Data *odd) rate = 0.0; if (mode_info->name) - snprintf(resolution_text, (RESOLUTION_TXT_MAX_LENGTH - 1), "%s@%.1fHz", mode_info->name, rate); + snprintf(resolution_text, (RESOLUTION_TXT_MAX_LENGTH - 1), _("%s@%.1fHz"), mode_info->name, rate); else - snprintf(resolution_text, (RESOLUTION_TXT_MAX_LENGTH - 1), "%dx%d@%.1fHz", mode_info->width, mode_info->height, rate); + snprintf(resolution_text, (RESOLUTION_TXT_MAX_LENGTH - 1), _("%d×%d@%.1fHz"), mode_info->width, mode_info->height, rate); e_widget_ilist_append(e_config_runtime_info->gui.widgets.resolution.widget, NULL, resolution_text, _resolution_widget_selected_cb, mode_info, NULL);