Click and move -> Click and drag

This commit is contained in:
Joe Hansen 2015-05-02 09:05:05 +00:00
parent 04084af7e6
commit 6aed7d2c23
8 changed files with 14 additions and 14 deletions

View file

@ -131,7 +131,7 @@ char * calligraphy_get_name(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUT
char * calligraphy_get_description(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED, int mode ATTRIBUTE_UNUSED)
{
return(strdup(
gettext_noop("Click and move the mouse around to draw in calligraphy.")));
gettext_noop("Click and drag the mouse around to draw in calligraphy.")));
}

View file

@ -100,7 +100,7 @@ const char * mosaic_names[mosaic_NUM_TOOLS] = {
gettext_noop("Mosaic"),
};
const char * mosaic_descs[mosaic_NUM_TOOLS][2] = {
{gettext_noop("Click and move the mouse to add a mosaic effect to parts of your picture."),
{gettext_noop("Click and drag the mouse to add a mosaic effect to parts of your picture."),
gettext_noop("Click to add a mosaic effect to your entire picture."),},
};

View file

@ -153,17 +153,17 @@ const char * mosaic_shaped_names[mosaic_shaped_NUM_TOOLS] =
const char * mosaic_shaped_descs[mosaic_shaped_NUM_TOOLS][2] =
{
{
gettext_noop("Click and move the mouse to add a square mosaic to parts of your picture."),
gettext_noop("Click and drag the mouse to add a square mosaic to parts of your picture."),
gettext_noop("Click to add a square mosaic to your entire picture."),
},
{
gettext_noop("Click and move the mouse to add a hexagonal mosaic to parts of your picture."),
gettext_noop("Click and drag the mouse to add a hexagonal mosaic to parts of your picture."),
gettext_noop("Click to add a hexagonal mosaic to your entire picture."),
},
{
gettext_noop("Click and move the mouse to add an irregular mosaic to parts of your picture."),
gettext_noop("Click and drag the mouse to add an irregular mosaic to parts of your picture."),
gettext_noop("Click to add an irregular mosaic to your entire picture."),
},
};

View file

@ -103,7 +103,7 @@ char * negative_get_description(magic_api * api ATTRIBUTE_UNUSED, int which ATTR
{
if (mode == MODE_PAINT)
return(strdup(
gettext_noop("Click and move the mouse around to make your painting negative."))); /* Does this make more sense? */
gettext_noop("Click and drag the mouse around to make your painting negative."))); /* Does this make more sense? */
else if (mode == MODE_FULLSCREEN)
return(strdup(
gettext_noop("Click to turn your painting into its negative.")));

View file

@ -63,7 +63,7 @@ const char * noise_names[noise_NUM_TOOLS] = {
gettext_noop("Noise"),
};
const char * noise_descs[noise_NUM_TOOLS][2] = {
{gettext_noop("Click and move the mouse to add noise to parts of your picture."),
{gettext_noop("Click and drag the mouse to add noise to parts of your picture."),
gettext_noop("Click to add noise to your entire picture."),},
};

View file

@ -75,11 +75,11 @@ const char * sharpen_names[sharpen_NUM_TOOLS] = {
gettext_noop("Silhouette")
};
const char * sharpen_descs[sharpen_NUM_TOOLS][2] = {
{gettext_noop("Click and move the mouse to trace edges in parts of your picture."),
{gettext_noop("Click and drag the mouse to trace edges in parts of your picture."),
gettext_noop("Click to trace edges in your entire picture."),},
{gettext_noop("Click and move the mouse to sharpen parts of your picture."),
{gettext_noop("Click and drag the mouse to sharpen parts of your picture."),
gettext_noop("Click to sharpen the entire picture."),},
{gettext_noop("Click and move the mouse to create a black and white silhouette."),
{gettext_noop("Click and drag the mouse to create a black and white silhouette."),
gettext_noop("Click to create a black and white silhouette of your entire picture.")},
};

View file

@ -112,9 +112,9 @@ char * smudge_get_name(magic_api * api ATTRIBUTE_UNUSED, int which)
char * smudge_get_description(magic_api * api ATTRIBUTE_UNUSED, int which, int mode ATTRIBUTE_UNUSED)
{
if (which == 0)
return(strdup(gettext_noop("Click and move the mouse around to smudge the picture.")));
return(strdup(gettext_noop("Click and drag the mouse around to smudge the picture.")));
else /* if (which == 1) */
return(strdup(gettext_noop("Click and move the mouse around to draw with wet, smudgy paint.")));
return(strdup(gettext_noop("Click and drag the mouse around to draw with wet, smudgy paint.")));
}
// Do the effect:

View file

@ -72,9 +72,9 @@ const char * tint_names[tint_NUM_TOOLS] = {
gettext_noop("Color & White") // It does more than this but more intuitive than threshold.
};
const char * tint_descs[tint_NUM_TOOLS][2] = {
{gettext_noop("Click and move the mouse around to change the color of parts of your picture."),
{gettext_noop("Click and drag the mouse around to change the color of parts of your picture."),
gettext_noop("Click to change the color of your entire picture."),},
{gettext_noop("Click and move the mouse around to turn parts of your picture into white and a color you choose."),
{gettext_noop("Click and drag the mouse around to turn parts of your picture into white and a color you choose."),
gettext_noop("Click to turn your entire picture into white and a color you choose.")}
};