2003-08-23 00:17:00 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file tex-strings.C
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
2002-03-21 17:27:08 +00:00
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
|
|
|
|
* \author Jean-Marc Lasgouttes
|
2002-03-21 17:27:08 +00:00
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
2000-07-24 13:53:19 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
#include <config.h>
|
2000-07-24 13:53:19 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
#include "tex-strings.h"
|
|
|
|
|
|
2003-09-05 16:31:30 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// this file should perhaps be split into even smaller parts
|
|
|
|
|
|
2004-06-27 13:14:08 +00:00
|
|
|
|
char const * const string_paragraph_separation[] = {
|
2002-03-21 17:27:08 +00:00
|
|
|
|
"indent", "skip", ""
|
1999-09-27 18:44:28 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2004-06-27 13:14:08 +00:00
|
|
|
|
char const * const string_quotes_language[] = {
|
2002-03-21 17:27:08 +00:00
|
|
|
|
"english", "swedish", "german", "polish", "french", "danish", ""
|
|
|
|
|
};
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
|
2004-06-27 13:14:08 +00:00
|
|
|
|
char const * const string_papersize[] = {
|
2004-08-15 21:52:13 +00:00
|
|
|
|
"default", "custom", "letterpaper", "executivepaper", "legalpaper",
|
1999-11-15 12:01:38 +00:00
|
|
|
|
"a3paper", "a4paper", "a5paper", "b3paper", "b4paper", "b5paper", ""
|
1999-09-27 18:44:28 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2004-06-27 13:14:08 +00:00
|
|
|
|
char const * const string_orientation[] = {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
"portrait", "landscape", ""
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2004-06-27 13:14:08 +00:00
|
|
|
|
char const * const string_footnotekinds[] = {
|
2002-03-21 17:27:08 +00:00
|
|
|
|
"footnote", "margin", "fig", "tab", "alg", "wide-fig", "wide-tab", ""
|
1999-09-27 18:44:28 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2004-06-27 13:14:08 +00:00
|
|
|
|
char const * const string_align[] = {
|
2002-03-21 17:27:08 +00:00
|
|
|
|
"block", "left", "right", "center", ""
|
1999-09-27 18:44:28 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// The following was moved from tex-defs.h to here, because tex-defs.h is
|
2002-03-21 17:27:08 +00:00
|
|
|
|
// used all over. As it happens, that meant that these strings were included
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// 27 times in the object file. (Asger)
|
|
|
|
|
|
2004-06-27 13:14:08 +00:00
|
|
|
|
char const * const tex_graphics[] = {"default", "dvips", "dvitops", "emtex",
|
1999-09-27 18:44:28 +00:00
|
|
|
|
"ln", "oztex", "textures", "none", ""};
|
|
|
|
|
|
|
|
|
|
|
2004-06-27 13:14:08 +00:00
|
|
|
|
char const * const tex_fonts[] = {"default", "ae", "pslatex", "times", "palatino",
|
2000-04-11 16:57:16 +00:00
|
|
|
|
"helvet", "avant", "newcent", "bookman", ""};
|