diff --git a/src/utils.c b/src/utils.c index faccb822..e51cb25d 100644 --- a/src/utils.c +++ b/src/utils.c @@ -980,9 +980,10 @@ gboolean utils_check_disk_status(gint idx) { gchar *basename = g_path_get_basename(doc_list[idx].file_name); - if (dialogs_show_question(_ - ("The file '%s' on the disk is more recent than\n" - "the current buffer.\nDo you want to reload it?"), basename)) + if (dialogs_show_question_full(_("_Reload"), GTK_STOCK_CANCEL, + _("Do you want to reload it?"), + _("The file '%s' on the disk is more recent than\n" + "the current buffer."), basename)) { document_reload_file(idx, NULL); doc_list[idx].last_check = t;