1999-09-27 18:44:28 +00:00
|
|
|
|
// -*- C++ -*-
|
2003-08-23 00:17:00 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file tex-strings.h
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
|
#ifndef TEX_STRINGS
|
|
|
|
|
#define TEX_STRINGS
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
// this file should perhaps be split into even smaler parts
|
|
|
|
|
|
|
|
|
|
///
|
2004-06-27 13:14:08 +00:00
|
|
|
|
extern char const * const string_paragraph_separation[];
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
2004-06-27 13:14:08 +00:00
|
|
|
|
extern char const * const string_quotes_language[];
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
2004-06-27 13:14:08 +00:00
|
|
|
|
extern char const * const string_papersize[];
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
2004-06-27 13:14:08 +00:00
|
|
|
|
extern char const * const string_orientation[];
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
2004-06-27 13:14:08 +00:00
|
|
|
|
extern char const * const string_footnotekinds[];
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
2004-06-27 13:14:08 +00:00
|
|
|
|
extern char const * const string_align[];
|
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
|
|
|
|
extern char const * const tex_graphics[];
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
///
|
2004-06-27 13:14:08 +00:00
|
|
|
|
extern char const * const tex_fonts[];
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
#endif
|