tuxpaint-pencil-sharpener/src/titles.h
William Kendrick 21ea42f38f Attempting to debug/fix SDL_Pango stuff.
Added icon for Kalidescope magic tool.
Added Canada map starter.
Added Japan map starter.
Improved comments near gettext() calls to improve POT and PO files.
Regenerated PO files and POT file.
Added .cvsignore to make sure tp_magic_api.h (which is generated) isn't noticed.
2007-07-17 18:41:16 +00:00

63 lines
1.3 KiB
C

/*
titles.h
For Tux Paint
List of available titles
Copyright (c) 2002-2007 by Bill Kendrick and others
bill@newbreedsoftware.com
http://www.tuxpaint.org/
June 14, 2002 - July 17, 2007
$Id$
*/
/* What titles are available: */
enum
{
TITLE_NONE,
TITLE_NOCOLORS,
TITLE_TOOLS,
TITLE_COLORS,
TITLE_BRUSHES,
TITLE_ERASERS,
TITLE_STAMPS,
TITLE_SHAPES,
TITLE_LETTERS,
TITLE_MAGIC,
NUM_TITLES
};
/* Title names: */
const char *const title_names[NUM_TITLES] = {
"",
"",
// Title of tool selector (buttons down the left)
gettext_noop("Tools"),
// Title of color palette (buttons across the bottom)
gettext_noop("Colors"),
// Title of brush selector (buttons down the right for paint and line tools)
gettext_noop("Brushes"),
// Title of eraser selector (buttons down the right for eraser tool)
gettext_noop("Erasers"),
// Title of stamp selector (buttons down the right for stamps tool)
gettext_noop("Stamps"),
// Title of shape selector (buttons down the right for shapes tool)
gettext_noop("Shapes"),
// Title of font selector (buttons down the right for text tool)
gettext_noop("Letters"),
// Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
gettext_noop("Magic")
};