]> git.lyx.org Git - lyx.git/blob - src/tex-strings.C
A better fix for bug 675:
[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 #include "gettext.h"
16
17
18 namespace lyx {
19
20
21 // this file should perhaps be split into even smaller parts
22
23 char const * const string_paragraph_separation[] = {
24         "indent", "skip", ""
25 };
26
27
28 char const * const string_quotes_language[] = {
29         "english", "swedish", "german", "polish", "french", "danish", ""
30 };
31
32
33 char const * const string_papersize[] = {
34         "default", "custom", "letterpaper", "executivepaper", "legalpaper",
35         "a3paper", "a4paper", "a5paper", "b3paper", "b4paper", "b5paper", ""
36 };
37
38
39 char const * const string_orientation[] = {
40         "portrait", "landscape", ""
41 };
42
43
44 char const * const string_footnotekinds[] = {
45         "footnote", "margin", "fig", "tab", "alg", "wide-fig", "wide-tab", ""
46 };
47
48
49 char const * const string_align[] = {
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 * const tex_graphics[] = {"default", "dvips", "dvitops", "emtex",
59                       "ln", "oztex", "textures", "none", ""
60 };
61
62
63 char const * const tex_fonts_roman[] = {"default", "cmr", "lmodern", "ae", "times", "palatino",
64                             "charter", "newcent", "bookman", "utopia", "beraserif", "ccfonts", "chancery", ""
65 };
66
67
68 char const * tex_fonts_roman_gui[] = { N_("Default"), N_("Computer Modern Roman"), N_("Latin Modern Roman"),
69                             N_("AE (Almost European)"), N_("Times Roman"), N_("Palatino"), N_("Bitstream Charter"),
70                             N_("New Century Schoolbook"), N_("Bookman"), N_("Utopia"),  N_("Bera Serif"),
71                             N_("Concrete Roman"), N_("Zapf Chancery"), ""
72 };
73
74
75 char const * const tex_fonts_sans[] = {"default", "cmss", "lmss", "helvet", "avant", "berasans", "cmbr", ""
76 };
77
78
79 char const * tex_fonts_sans_gui[] = { N_("Default"), N_("Computer Modern Sans"), N_("Latin Modern Sans"), 
80                             N_("Helvetica"), N_("Avant Garde"), N_("Bera Sans"), N_("CM Bright"), ""
81 };
82
83
84 char const * const tex_fonts_monospaced[] = {"default", "cmtt", "lmtt", "courier", "beramono", 
85                             "luximono", "cmtl", ""
86 };
87
88
89 char const * tex_fonts_monospaced_gui[] = { N_("Default"), N_("Computer Modern Typewriter"),
90                             N_("Latin Modern Typewriter"), N_("Courier"), N_("Bera Mono"), N_("LuxiMono"),
91                             N_("CM Typewriter Light"), ""
92 };
93
94
95 } // namespace lyx