From 31d76ad5ce713c4b0c40e7dbfa02c4b051ddeb4b Mon Sep 17 00:00:00 2001 From: William Kendrick Date: Mon, 29 Oct 2007 15:58:06 +0000 Subject: [PATCH] Had mirror & flip descriptions swapped. Fix. --- magic/src/mirror_flip.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/magic/src/mirror_flip.c b/magic/src/mirror_flip.c index 8e4114cd7..5cf9d7bc3 100644 --- a/magic/src/mirror_flip.c +++ b/magic/src/mirror_flip.c @@ -23,7 +23,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA (See COPYING.txt) - Last updated: August 7, 2007 + Last updated: October 29, 2007 $Id$ */ @@ -104,10 +104,10 @@ char * mirror_flip_get_description(magic_api * api, int which) { if (which == TOOL_MIRROR) return(strdup( - gettext("Click to flip the picture upside-down."))); + gettext("Click to make a mirror image."))); else return(strdup( - gettext("Click to make a mirror image."))); + gettext("Click to flip the picture upside-down."))); return(NULL); }