Initial revision

This commit is contained in:
William Kendrick 2003-02-24 01:46:52 +00:00
commit 365fe3e5b6
350 changed files with 43559 additions and 0 deletions

45
src/titles.h Normal file
View file

@ -0,0 +1,45 @@
/*
titles.h
For Tux Paint
List of available titles
Copyright (c) 2002 by Bill Kendrick
bill@newbreedsoftware.com
http://www.newbreedsoftware.com/tuxpaint/
June 14, 2002 - October 19, 2002
*/
/* What titles are available: */
enum {
TITLE_NONE,
TITLE_NOCOLORS,
TITLE_TOOLS,
TITLE_COLORS,
TITLE_BRUSHES,
TITLE_STAMPS,
TITLE_SHAPES,
TITLE_LETTERS,
TITLE_MAGIC,
NUM_TITLES
};
/* Title names: */
char * title_names[NUM_TITLES] = {
"",
"",
gettext_noop("Tools"),
gettext_noop("Colors"),
gettext_noop("Brushes"),
gettext_noop("Stamps"),
gettext_noop("Shapes"),
gettext_noop("Letters"),
gettext_noop("Magic")
};