Turned colours into colors as text should be in US English, changed 'threshold' into 'turn' to try and simplify
language. Still needs more.
This commit is contained in:
parent
c801b3e3fa
commit
c43465f0a2
1 changed files with 4 additions and 4 deletions
|
|
@ -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 <akanewbie@gmail.com>
|
||||
|
|
@ -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); }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue