Click and move -> Click and drag
This commit is contained in:
parent
6aed7d2c23
commit
88a49ccfb2
6 changed files with 9 additions and 9 deletions
|
|
@ -64,7 +64,7 @@ const char * alien_names[alien_NUM_TOOLS] = {
|
||||||
gettext_noop("Color Shift"),
|
gettext_noop("Color Shift"),
|
||||||
};
|
};
|
||||||
const char * alien_descs[alien_NUM_TOOLS][2] = {
|
const char * alien_descs[alien_NUM_TOOLS][2] = {
|
||||||
{gettext_noop("Click and move the mouse to change the colors in parts of your picture."),
|
{gettext_noop("Click and drag the mouse to change the colors in parts of your picture."),
|
||||||
gettext_noop("Click to change the colors in your entire picture."),},
|
gettext_noop("Click to change the colors in your entire picture."),},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -147,13 +147,13 @@ char * blocks_chalk_drip_get_description(magic_api * api ATTRIBUTE_UNUSED, int w
|
||||||
{
|
{
|
||||||
if (which == TOOL_BLOCKS)
|
if (which == TOOL_BLOCKS)
|
||||||
return(strdup(gettext_noop(
|
return(strdup(gettext_noop(
|
||||||
"Click and move the mouse around to make the picture blocky.")));
|
"Click and drag the mouse around to make the picture blocky.")));
|
||||||
else if (which == TOOL_CHALK)
|
else if (which == TOOL_CHALK)
|
||||||
return(strdup(gettext_noop(
|
return(strdup(gettext_noop(
|
||||||
"Click and move the mouse around to turn the picture into a chalk drawing.")));
|
"Click and drag the mouse around to turn the picture into a chalk drawing.")));
|
||||||
else if (which == TOOL_DRIP)
|
else if (which == TOOL_DRIP)
|
||||||
return(strdup(gettext_noop(
|
return(strdup(gettext_noop(
|
||||||
"Click and move the mouse around to make the picture drip.")));
|
"Click and drag the mouse around to make the picture drip.")));
|
||||||
|
|
||||||
return(NULL);
|
return(NULL);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -80,7 +80,7 @@ const char * blur_names[blur_NUM_TOOLS] = {
|
||||||
gettext_noop("Blur"),
|
gettext_noop("Blur"),
|
||||||
};
|
};
|
||||||
const char * blur_descs[blur_NUM_TOOLS][2] = {
|
const char * blur_descs[blur_NUM_TOOLS][2] = {
|
||||||
{gettext_noop("Click and move the mouse around to blur the image."),
|
{gettext_noop("Click and drag the mouse around to blur the image."),
|
||||||
gettext_noop("Click to blur the entire image.")},
|
gettext_noop("Click to blur the entire image.")},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -110,7 +110,7 @@ char * cartoon_get_name(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UN
|
||||||
char * cartoon_get_description(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED, int mode ATTRIBUTE_UNUSED)
|
char * cartoon_get_description(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED, int mode ATTRIBUTE_UNUSED)
|
||||||
{
|
{
|
||||||
return(strdup(gettext_noop(
|
return(strdup(gettext_noop(
|
||||||
"Click and move the mouse around to turn the picture into a cartoon.")));
|
"Click and drag the mouse around to turn the picture into a cartoon.")));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Do the effect:
|
// Do the effect:
|
||||||
|
|
|
||||||
|
|
@ -131,14 +131,14 @@ char * fade_darken_get_description(magic_api * api ATTRIBUTE_UNUSED, int which,
|
||||||
if (which == TOOL_FADE)
|
if (which == TOOL_FADE)
|
||||||
{
|
{
|
||||||
if (mode == MODE_PAINT)
|
if (mode == MODE_PAINT)
|
||||||
return(strdup(gettext_noop("Click and move the mouse to lighten parts of your picture.")));
|
return(strdup(gettext_noop("Click and drag the mouse to lighten parts of your picture.")));
|
||||||
else if (mode == MODE_FULLSCREEN)
|
else if (mode == MODE_FULLSCREEN)
|
||||||
return(strdup(gettext_noop("Click to lighten your entire picture.")));
|
return(strdup(gettext_noop("Click to lighten your entire picture.")));
|
||||||
}
|
}
|
||||||
else if (which == TOOL_DARKEN)
|
else if (which == TOOL_DARKEN)
|
||||||
{
|
{
|
||||||
if (mode == MODE_PAINT)
|
if (mode == MODE_PAINT)
|
||||||
return(strdup(gettext_noop("Click and move the mouse to darken parts of your picture.")));
|
return(strdup(gettext_noop("Click and drag the mouse to darken parts of your picture.")));
|
||||||
else if (mode == MODE_FULLSCREEN)
|
else if (mode == MODE_FULLSCREEN)
|
||||||
return(strdup(gettext_noop("Click to darken your entire picture.")));
|
return(strdup(gettext_noop("Click to darken your entire picture.")));
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -115,7 +115,7 @@ char * grass_get_name(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUS
|
||||||
// Return our descriptions, localized:
|
// Return our descriptions, localized:
|
||||||
char * grass_get_description(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED, int mode ATTRIBUTE_UNUSED)
|
char * grass_get_description(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED, int mode ATTRIBUTE_UNUSED)
|
||||||
{
|
{
|
||||||
return(strdup(gettext_noop("Click and move to draw grass. Don’t forget the dirt!")));
|
return(strdup(gettext_noop("Click and drag to draw grass. Don’t forget the dirt!")));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue