1 /*
2   titles.h
3 
4   For Tux Paint
5   List of available titles
6 
7   Copyright (c) 2002-2021 by Bill Kendrick and others
8   bill@newbreedsoftware.com
9   http://www.tuxpaint.org/
10 
11   This program is free software; you can redistribute it and/or modify
12   it under the terms of the GNU General Public License as published by
13   the Free Software Foundation; either version 2 of the License, or
14   (at your option) any later version.
15 
16   This program is distributed in the hope that it will be useful,
17   but WITHOUT ANY WARRANTY; without even the implied warranty of
18   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19   GNU General Public License for more details.
20 
21   You should have received a copy of the GNU General Public License
22   along with this program; if not, write to the Free Software
23   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
24   (See COPYING.txt)
25 
26   June 14, 2002 - February 20, 2021
27   $Id$
28 */
29 
30 
31 
32 /* What titles are available: */
33 
34 enum
35 {
36   TITLE_NONE,
37   TITLE_NOCOLORS,
38   TITLE_TOOLS,
39   TITLE_COLORS,
40   TITLE_BRUSHES,
41   TITLE_ERASERS,
42   TITLE_STAMPS,
43   TITLE_SHAPES,
44   TITLE_LETTERS,
45   TITLE_MAGIC,
46   TITLE_FILLS,
47   NUM_TITLES
48 };
49 
50 
51 /* Title names: */
52 
53 const char *const title_names[NUM_TITLES] = {
54   "",
55   "",
56   // Title of tool selector (buttons down the left)
57   gettext_noop("Tools"),
58 
59   // Title of color palette (buttons across the bottom)
60   gettext_noop("Colors"),
61 
62   // Title of brush selector (buttons down the right for paint and line tools)
63   gettext_noop("Brushes"),
64 
65   // Title of eraser selector (buttons down the right for eraser tool)
66   gettext_noop("Erasers"),
67 
68   // Title of stamp selector (buttons down the right for stamps tool)
69   gettext_noop("Stamps"),
70 
71   // Title of shape selector (buttons down the right for shapes tool)
72   gettext_noop("Shapes"),
73 
74   // Title of font selector (buttons down the right for text and label tools)
75   gettext_noop("Letters"),
76 
77   // Title of magic tool selector (buttons down the right for magic (effect plugin) tool)
78   gettext_noop("Magic"),
79 
80   // Title of fill selector (buttons down the right for fill tool)
81   gettext_noop("Fills")
82 };
83