mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-08 10:51:03 +00:00
83acbbd523
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2072 a592a061-630c-0410-9148-cb99ea01b6c8
69 lines
1.6 KiB
C
69 lines
1.6 KiB
C
/* This file is part of
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
*
|
|
* Copyright 1995 Matthias Ettrich
|
|
* Copyright 1995-2001 The LyX Team.
|
|
*
|
|
* ====================================================== */
|
|
|
|
#include <config.h>
|
|
|
|
#ifdef __GNUG__
|
|
#pragma implementation
|
|
#endif
|
|
|
|
#include "tex-strings.h"
|
|
|
|
// this file should perhaps be split into even smaller parts
|
|
|
|
char const * string_paragraph_separation[3] = {
|
|
"indent", "skip", ""
|
|
};
|
|
|
|
|
|
char const * string_quotes_language[7] = {
|
|
"english", "swedish", "german", "polish", "french", "danish", ""
|
|
};
|
|
|
|
|
|
char const * string_papersize[12] = {
|
|
"Default", "Custom", "letterpaper", "executivepaper", "legalpaper",
|
|
"a3paper", "a4paper", "a5paper", "b3paper", "b4paper", "b5paper", ""
|
|
};
|
|
|
|
|
|
char const * string_paperpackages[4] = {
|
|
"a4", "a4wide", "widemarginsa4", ""
|
|
};
|
|
|
|
|
|
char const * string_orientation[3] = {
|
|
"portrait", "landscape", ""
|
|
};
|
|
|
|
|
|
char const * string_footnotekinds[8] = {
|
|
"footnote", "margin", "fig", "tab", "alg", "wide-fig", "wide-tab", ""
|
|
};
|
|
|
|
|
|
char const * string_align[5] = {
|
|
"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)
|
|
|
|
char const * tex_graphics[] = {"default", "dvips", "dvitops", "emtex",
|
|
"ln", "oztex", "textures", "none", ""};
|
|
|
|
|
|
char const * tex_fonts[] = {"default", "ae", "pslatex", "times", "palatino",
|
|
"helvet", "avant", "newcent", "bookman", ""};
|
|
|
|
|