tools/gimpblendtool.c tools/gimpcroptool.c use

2003-08-22  Sven Neumann  <sven@gimp.org>

	* tools/gimpblendtool.c
	* tools/gimpcroptool.c
	* tools/gimpeditselectiontool.c: use gimp_tool_push_status_coords()
	for the initial status in order to reduce work for translators.
This commit is contained in:
Sven Neumann 2003-08-22 01:24:58 +00:00 committed by Sven Neumann
parent 32499a849d
commit 37e2d34afe
4 changed files with 12 additions and 4 deletions

View File

@ -1,3 +1,10 @@
2003-08-22 Sven Neumann <sven@gimp.org>
* tools/gimpblendtool.c
* tools/gimpcroptool.c
* tools/gimpeditselectiontool.c: use gimp_tool_push_status_coords()
for the initial status in order to reduce work for translators.
2003-08-22 Simon Budig <simon@gimp.org>
* app/vectors/gimpstroke.[ch]

View File

@ -201,7 +201,7 @@ gimp_blend_tool_button_press (GimpTool *tool,
gimp_tool_control_activate (tool->control);
/* initialize the statusbar display */
gimp_tool_push_status (tool, _("Blend: 0, 0"));
gimp_tool_push_status_coords (tool, _("Blend: "), 0, ", ", 0);
/* Start drawing the blend tool */
gimp_draw_tool_start (GIMP_DRAW_TOOL (tool), gdisp);

View File

@ -953,7 +953,7 @@ crop_start (GimpCropTool *crop)
old_gdisp = tool->gdisp;
/* initialize the statusbar display */
gimp_tool_push_status (tool, _("Crop: 0 x 0"));
gimp_tool_push_status_coords (tool, _("Crop: "), 0, " x ", 0);
gimp_draw_tool_start (GIMP_DRAW_TOOL (tool), tool->gdisp);
}

View File

@ -364,7 +364,8 @@ init_edit_selection (GimpTool *tool,
gimp_display_shell_selection_visibility (shell, GIMP_SELECTION_PAUSE);
/* initialize the statusbar display */
gimp_tool_push_status (tool, _("Move: 0, 0"));
gimp_tool_push_status_coords (GIMP_TOOL (edit_select),
_("Move: "), 0, ", ", 0);
gimp_draw_tool_start (GIMP_DRAW_TOOL (edit_select), gdisp);
}
@ -519,7 +520,7 @@ gimp_edit_selection_tool_motion (GimpTool *tool,
gdisp,
motion_x,
motion_y);
/******************************************* adam's live move *******/
/********************************************************************/
{