diff --git a/magic/src/calligraphy.c b/magic/src/calligraphy.c index 78151b8b8..c73d1f21e 100644 --- a/magic/src/calligraphy.c +++ b/magic/src/calligraphy.c @@ -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."))); } diff --git a/magic/src/mosaic.c b/magic/src/mosaic.c index f68a18327..061519968 100644 --- a/magic/src/mosaic.c +++ b/magic/src/mosaic.c @@ -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."),}, }; diff --git a/magic/src/mosaic_shaped.c b/magic/src/mosaic_shaped.c index baa9ed774..d153258b2 100644 --- a/magic/src/mosaic_shaped.c +++ b/magic/src/mosaic_shaped.c @@ -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."), }, }; diff --git a/magic/src/negative.c b/magic/src/negative.c index ccd425b2b..178d8590a 100644 --- a/magic/src/negative.c +++ b/magic/src/negative.c @@ -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."))); diff --git a/magic/src/noise.c b/magic/src/noise.c index 256add744..806b98b8c 100644 --- a/magic/src/noise.c +++ b/magic/src/noise.c @@ -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."),}, }; diff --git a/magic/src/sharpen.c b/magic/src/sharpen.c index 8eb159526..40529c67d 100644 --- a/magic/src/sharpen.c +++ b/magic/src/sharpen.c @@ -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.")}, }; diff --git a/magic/src/smudge.c b/magic/src/smudge.c index 80111c602..86627a91f 100644 --- a/magic/src/smudge.c +++ b/magic/src/smudge.c @@ -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: diff --git a/magic/src/tint.c b/magic/src/tint.c index 65b9ae53f..496999b13 100644 --- a/magic/src/tint.c +++ b/magic/src/tint.c @@ -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.")} };