From fcd90848c239456ec4f23f3ea99cd3bdad17fc48 Mon Sep 17 00:00:00 2001 From: Joe Hansen Date: Sat, 2 May 2015 10:31:47 +0000 Subject: [PATCH] fixing that is symmetric --- magic/src/kalidescope.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/magic/src/kalidescope.c b/magic/src/kalidescope.c index 49d9985d2..85259c7ca 100644 --- a/magic/src/kalidescope.c +++ b/magic/src/kalidescope.c @@ -139,7 +139,7 @@ char * kalidescope_get_description(magic_api * api ATTRIBUTE_UNUSED, int which, } else if (which == KAL_PATTERN) { return(strdup(gettext_noop("Click and drag the mouse to draw a pattern across the picture."))); } else if (which == KAL_TILES) { - return(strdup(gettext_noop("Click and drag the mouse to draw a pattern plus its symmetric across the picture."))); + return(strdup(gettext_noop("Click and drag the mouse to draw a pattern that it symmetric across the picture."))); } else { /* KAL_BOTH */ return(strdup(gettext_noop("Click and drag the mouse to draw with symmetric brushes (a kaleidoscope)."))); }