Revision: 4430 http://geany.svn.sourceforge.net/geany/?rev=4430&view=rev Author: eht16 Date: 2009-11-17 22:56:46 +0000 (Tue, 17 Nov 2009)
Log Message: ----------- Improve printing status texts (patch by Dominic Hopf, thanks).
Modified Paths: -------------- trunk/ChangeLog trunk/src/printing.c
Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2009-11-17 21:49:43 UTC (rev 4429) +++ trunk/ChangeLog 2009-11-17 22:56:46 UTC (rev 4430) @@ -10,6 +10,8 @@ preferences dialog. Move the VTE related callback functions into vte.c. Make use of ui_setup_open_button_callback(). + * src/printing.c: + Improve printing status texts (patch by Dominic Hopf, thanks).
2009-11-16 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
Modified: trunk/src/printing.c =================================================================== --- trunk/src/printing.c 2009-11-17 21:49:43 UTC (rev 4429) +++ trunk/src/printing.c 2009-11-17 22:56:46 UTC (rev 4430) @@ -778,9 +778,9 @@ { gchar *filename = (data != NULL) ? data : GEANY_STRING_UNTITLED; if (gtk_print_operation_get_status(op) == GTK_PRINT_STATUS_FINISHED_ABORTED) - msgwin_status_add(_("Printing of file %s was cancelled."), filename); + msgwin_status_add(_("Did not send document %s to the printing subsystem."), filename); else if (gtk_print_operation_get_status(op) == GTK_PRINT_STATUS_FINISHED) - msgwin_status_add(_("File %s printed."), filename); + msgwin_status_add(_("Document %s was sent to the printing subsystem."), filename); }
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.