From 33a4d5d4e35710c832bbdee736a0219ca86f63fe Mon Sep 17 00:00:00 2001 From: Marek Kasik Date: Fri, 21 Mar 2014 14:10:26 +0100 Subject: [PATCH] libview: Show correct warning when printing Show that requested format is not supported by printer if it is not supported. https://bugzilla.gnome.org/show_bug.cgi?id=724044 --- libview/ev-print-operation.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libview/ev-print-operation.c b/libview/ev-print-operation.c index 8957eecf..ea318365 100644 --- a/libview/ev-print-operation.c +++ b/libview/ev-print-operation.c @@ -1211,7 +1211,7 @@ ev_print_operation_export_print_dialog_response_cb (GtkDialog *dial g_set_error_literal (&export->error, GTK_PRINT_ERROR, GTK_PRINT_ERROR_GENERAL, - _("PostScript is not supported by this printer.")); + _("Requested format is not supported by this printer.")); g_signal_emit (op, signals[DONE], 0, GTK_PRINT_OPERATION_RESULT_ERROR); return;