More appropriate text for the new 'New' dialog.

This commit is contained in:
William Kendrick 2007-07-26 16:30:36 +00:00
parent 540b950d22
commit 426ee7b252
2 changed files with 4 additions and 8 deletions

View file

@ -116,7 +116,7 @@ const char *const tool_tips[NUM_TOOLS] = {
gettext_noop("Eraser!"),
// Response to 'start a new image' action
gettext_noop("You now have a blank sheet to draw on!"),
gettext_noop("Pick a color or picture with which to start a new drawing."),
// Response to 'open' action (while file dialog is being constructed)
gettext_noop("Open…"),

View file

@ -16584,7 +16584,6 @@ int do_new_dialog(void)
int places_to_look;
int tot;
int first_starter;
char *freeme;
do_setcursor(cursor_watch);
@ -16958,13 +16957,10 @@ int do_new_dialog(void)
#endif
/* Let user choose an image: */
/* Let user choose a color or image: */
// Instructions for 'New' file/color dialog FIXME
freeme = textdir(gettext_noop("Choose the picture you want, "
"then click “Open”."));
draw_tux_text(TUX_BORED, freeme, 1);
free(freeme);
// Instructions for 'New' file/color dialog
draw_tux_text(TUX_BORED, tool_tips[TOOL_NEW], 1);
/* NOTE: cur is now set above; if file_id'th file is found, it's
set to that file's index; otherwise, we default to '0' */