plug-ins/print/print-page-layout.c tweaked layout and changed labels to

2007-08-08  Sven Neumann  <sven@gimp.org>

	* plug-ins/print/print-page-layout.c
	* plug-ins/print/print.c: tweaked layout and changed labels to 
the
	terms used in the EOG print dialog.


svn path=/trunk/; revision=23160
This commit is contained in:
Sven Neumann 2007-08-08 21:48:31 +00:00 committed by Sven Neumann
parent c166b002bb
commit 639a9e62d0
3 changed files with 12 additions and 5 deletions

View File

@ -1,3 +1,9 @@
2007-08-08 Sven Neumann <sven@gimp.org>
* plug-ins/print/print-page-layout.c
* plug-ins/print/print.c: tweaked layout and changed labels to the
terms used in the EOG print dialog.
2007-08-08 Sven Neumann <sven@gimp.org> 2007-08-08 Sven Neumann <sven@gimp.org>
* plug-ins/print/print.[ch] * plug-ins/print/print.[ch]

View File

@ -273,9 +273,9 @@ print_size_frame (PrintData *data,
image_height = (info.image_height * image_height = (info.image_height *
gimp_unit_get_factor (data->unit) / data->yres); gimp_unit_get_factor (data->unit) / data->yres);
frame = gimp_frame_new (_("Image Size")); frame = gimp_frame_new (_("Size"));
vbox = gtk_vbox_new (FALSE, 12); vbox = gtk_vbox_new (FALSE, 6);
gtk_container_add (GTK_CONTAINER (frame), vbox); gtk_container_add (GTK_CONTAINER (frame), vbox);
gtk_widget_show (vbox); gtk_widget_show (vbox);
@ -400,9 +400,9 @@ print_offset_frame (PrintData *data,
GtkWidget *label; GtkWidget *label;
GtkWidget *combo; GtkWidget *combo;
frame = gimp_frame_new (_("Image Offsets")); frame = gimp_frame_new (_("Position"));
vbox = gtk_vbox_new (FALSE, 12); vbox = gtk_vbox_new (FALSE, 6);
gtk_container_add (GTK_CONTAINER (frame), vbox); gtk_container_add (GTK_CONTAINER (frame), vbox);
gtk_widget_show (vbox); gtk_widget_show (vbox);
@ -413,6 +413,7 @@ print_offset_frame (PrintData *data,
table = gtk_table_new (4, 4, FALSE); table = gtk_table_new (4, 4, FALSE);
gtk_table_set_row_spacings (GTK_TABLE (table), 2); gtk_table_set_row_spacings (GTK_TABLE (table), 2);
gtk_table_set_col_spacings (GTK_TABLE (table), 6); gtk_table_set_col_spacings (GTK_TABLE (table), 6);
gtk_table_set_col_spacing (GTK_TABLE (table), 0, 0);
gtk_table_set_col_spacing (GTK_TABLE (table), 1, 12); gtk_table_set_col_spacing (GTK_TABLE (table), 1, 12);
gtk_box_pack_start (GTK_BOX (vbox), table, FALSE, FALSE, 0); gtk_box_pack_start (GTK_BOX (vbox), table, FALSE, FALSE, 0);
gtk_widget_show (table); gtk_widget_show (table);

View File

@ -210,7 +210,7 @@ print_image (gint32 image_ID,
G_CALLBACK (create_custom_widget), G_CALLBACK (create_custom_widget),
&data); &data);
gtk_print_operation_set_custom_tab_label (operation, _("Image")); gtk_print_operation_set_custom_tab_label (operation, _("Image Settings"));
gtk_print_operation_run (operation, gtk_print_operation_run (operation,
GTK_PRINT_OPERATION_ACTION_PRINT_DIALOG, GTK_PRINT_OPERATION_ACTION_PRINT_DIALOG,