diff --git a/src/modules/conf_randr/e_int_config_randr.c b/src/modules/conf_randr/e_int_config_randr.c index 3133cbc10..1df5203ca 100644 --- a/src/modules/conf_randr/e_int_config_randr.c +++ b/src/modules/conf_randr/e_int_config_randr.c @@ -175,15 +175,15 @@ _e_conf_randr_confirmation_dialog_timer_cb(void *data) if (cdd->countdown > 0) { snprintf(buf, sizeof(buf), - _("Does this look OK? Click Keep if it does, or Restore if not.
" - "If you do not press a button, the previous settings will be
" + _("Does this look OK? Click Keep if it does, or Restore if not." + "If you do not press a button, the previous settings will be" "restored in %d seconds."), cdd->countdown); } else { snprintf(buf, sizeof(buf), - _("Does this look OK? Click Keep if it does, or Restore if not.
" - "If you do not press a button, the previous settings will be
" + _("Does this look OK? Click Keep if it does, or Restore if not." + "If you do not press a button, the previous settings will be" "restored IMMEDIATELY.")); } @@ -275,8 +275,8 @@ _e_conf_randr_confirmation_dialog_new(E_Config_Dialog *cfd) e_dialog_icon_set(cd->dialog, "preferences-system-screen-resolution", 48); e_win_delete_callback_set(cd->dialog->win, _e_conf_randr_confirmation_dialog_delete_cb); snprintf(buf, sizeof(buf), - _("Does this look OK? Click Keep if it does, or Restore if not.
" - "If you do not press a button, the previous settings will be
" + _("Does this look OK? Click Keep if it does, or Restore if not." + "If you do not press a button, the previous settings will be" "restored in %d seconds."), cd->countdown); e_dialog_text_set(cd->dialog, buf); e_dialog_button_add(cd->dialog, _("Keep"), NULL, _e_conf_randr_confirmation_dialog_keep_cb, cd); @@ -413,11 +413,11 @@ static Eina_Bool _deferred_noxrandr_error(void *data __UNUSED__) { e_util_dialog_show(_("Missing Features"), - _("Your X Display Server is missing support for
" - "the XRandR (X Resize and Rotate) extension version 1.2 or above.
" - "You cannot change screen resolutions without
" - "the support of this extension. It could also be
" - "that at the time ecore was built, there
" + _("Your X Display Server is missing support for" + "the XRandR (X Resize and Rotate) extension version 1.2 or above." + "You cannot change screen resolutions without" + "the support of this extension. It could also be" + "that at the time ecore was built, there" "was no XRandR support detected.")); return ECORE_CALLBACK_CANCEL; }