1999-09-27 18:44:28 +00:00
|
|
|
#include <config.h>
|
|
|
|
#include "tex-strings.h"
|
|
|
|
|
|
|
|
// this file should perhaps be split into even smaller parts
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
char const * string_paragraph_separation[3] = {
|
1999-09-27 18:44:28 +00:00
|
|
|
"indent", "skip", ""
|
|
|
|
};
|
|
|
|
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
char const * string_quotes_language[7] = {
|
1999-09-27 18:44:28 +00:00
|
|
|
"english", "swedish", "german", "polish", "french", "danish", ""
|
|
|
|
};
|
|
|
|
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
char const * string_papersize[12] = {
|
1999-09-27 18:44:28 +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
|
|
|
};
|
|
|
|
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
char const * string_paperpackages[4] = {
|
1999-09-27 18:44:28 +00:00
|
|
|
"a4", "a4wide", "widemarginsa4", ""
|
|
|
|
};
|
|
|
|
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
char const * string_orientation[3] = {
|
1999-09-27 18:44:28 +00:00
|
|
|
"portrait", "landscape", ""
|
|
|
|
};
|
|
|
|
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
char const * string_footnotekinds[8] = {
|
1999-09-27 18:44:28 +00:00
|
|
|
"footnote", "margin", "fig", "tab", "alg", "wide-fig", "wide-tab", ""
|
|
|
|
};
|
|
|
|
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
char const * string_align[5] = {
|
1999-09-27 18:44:28 +00:00
|
|
|
"block", "left", "right", "center", ""
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// The following was moved from tex-defs.h to here, because tex-defs.h is
|
|
|
|
// used all over. As it happens, that meant that these strings were included
|
|
|
|
// 27 times in the object file. (Asger)
|
|
|
|
|
2000-03-10 13:22:20 +00:00
|
|
|
#if 0
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2000-03-10 13:22:20 +00:00
|
|
|
char const * tex_babel[] = {
|
|
|
|
"default", "afrikaans", "american", "arabic",
|
|
|
|
"austrian", "bahasa", "brazil", "breton",
|
|
|
|
"catalan", "croatian", "czech", "danish", "dutch",
|
|
|
|
"english", "esperanto", "estonian",
|
|
|
|
"finnish", "francais", "french", "frenchb",
|
|
|
|
"galician",
|
|
|
|
"german", "greek", "hebrew", "hungarian", "irish",
|
|
|
|
"italian", "lsorbian", "magyar", "norsk",
|
|
|
|
"polish", "portuges", "romanian",
|
|
|
|
"russian", "scottish",
|
|
|
|
"spanish", "slovak", "slovene", "swedish",
|
|
|
|
"turkish", "usorbian", "welsh",
|
|
|
|
""};
|
|
|
|
#endif
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
char const * tex_graphics[] = {"default", "dvips", "dvitops", "emtex",
|
1999-09-27 18:44:28 +00:00
|
|
|
"ln", "oztex", "textures", "none", ""};
|
|
|
|
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
char const * tex_fonts[] = {"default", "times", "palatino", "helvet", "avant",
|
1999-09-27 18:44:28 +00:00
|
|
|
"newcent", "bookman", ""};
|
|
|
|
|
|
|
|
|