]> git.lyx.org Git - lyx.git/blob - src/tex-strings.C
If I ever see another licence blurb again, it'll be too soon...
[lyx.git] / src / tex-strings.C
1 /**
2  * \file tex-strings.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Lars Gullik Bjønnes
7  * \author Jean-Marc Lasgouttes
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "tex-strings.h"
15
16 // this file should perhaps be split into even smaller parts
17
18 char const * string_paragraph_separation[3] = {
19         "indent", "skip", ""
20 };
21
22
23 char const * string_quotes_language[7] = {
24         "english", "swedish", "german", "polish", "french", "danish", ""
25 };
26
27
28 char const * string_papersize[12] = {
29         "Default", "Custom", "letterpaper", "executivepaper", "legalpaper",
30         "a3paper", "a4paper", "a5paper", "b3paper", "b4paper", "b5paper", ""
31 };
32
33
34 char const * string_paperpackages[4] = {
35         "a4", "a4wide", "widemarginsa4", ""
36 };
37
38
39 char const * string_orientation[3] = {
40         "portrait", "landscape", ""
41 };
42
43
44 char const * string_footnotekinds[8] = {
45         "footnote", "margin", "fig", "tab", "alg", "wide-fig", "wide-tab", ""
46 };
47
48
49 char const * string_align[5] = {
50         "block", "left", "right", "center", ""
51 };
52
53
54 // The following was moved from tex-defs.h to here, because tex-defs.h is
55 // used all over. As it happens, that meant that these strings were included
56 // 27 times in the object file. (Asger)
57
58 char const * tex_graphics[] = {"default", "dvips", "dvitops", "emtex",
59                       "ln", "oztex", "textures", "none", ""};
60
61
62 char const * tex_fonts[] = {"default", "ae", "pslatex", "times", "palatino",
63                             "helvet", "avant", "newcent", "bookman", ""};