From c43465f0a2c42b54ce0d61d55eb6efa423d9accf Mon Sep 17 00:00:00 2001 From: secretlondon Date: Tue, 26 Aug 2008 04:05:26 +0000 Subject: [PATCH] Turned colours into colors as text should be in US English, changed 'threshold' into 'turn' to try and simplify language. Still needs more. --- magic/src/tint.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/magic/src/tint.c b/magic/src/tint.c index 0a7f97b24..c9b2e9033 100644 --- a/magic/src/tint.c +++ b/magic/src/tint.c @@ -1,7 +1,7 @@ /* tint.c - tint, Tin the image into one colour or threshold it into pure colour and white + tint, Tint the image into one color or threshold it into pure color and white Tux Paint - A simple drawing program for children. Credits: Andrew Corcoran @@ -69,9 +69,9 @@ const char * tint_names[tint_NUM_TOOLS] = { }; const char * tint_descs[tint_NUM_TOOLS][2] = { {gettext_noop("Click and move the mouse around to change the color of parts of the picture."), - gettext_noop("Click to change the colour of the entire image."),}, - {gettext_noop("Click and move the mouse around to threshold the image into pure colour and white regions."), - gettext_noop("Click to threshold the entire image into pure colour and white regions.")} + gettext_noop("Click to change the color of the entire image."),}, + {gettext_noop("Click and move the mouse around to turn the image into pure color and white regions."), + gettext_noop("Click to turn the entire image into pure color and white regions.")} }; Uint32 tint_api_version(void) { return(TP_MAGIC_API_VERSION); }