mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-08 20:32:49 +00:00
83acbbd523
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2072 a592a061-630c-0410-9148-cb99ea01b6c8
102 lines
2.6 KiB
C
102 lines
2.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 "language.h"
|
|
#include "gettext.h"
|
|
#include "encoding.h"
|
|
#include "lyxrc.h"
|
|
#include "lyx_gui_misc.h"
|
|
#include "lyxlex.h"
|
|
#include "debug.h"
|
|
|
|
using std::endl;
|
|
|
|
Languages languages;
|
|
Language const * english_language;
|
|
Language const * default_language;
|
|
Language ignore_lang("ignore", "ignore", "Ignore", false, 0, "ignore", "");
|
|
Language const * ignore_language = &ignore_lang;
|
|
|
|
void Languages::setDefaults()
|
|
{
|
|
languagelist["english"] = Language("english", "english", N_("English"),
|
|
false,
|
|
encodings.getEncoding("iso8859-1"),
|
|
"en", "");
|
|
english_language = default_language = &languagelist["english"];
|
|
}
|
|
|
|
void Languages::read(string const & filename)
|
|
{
|
|
LyXLex lex(0, 0);
|
|
lex.setFile(filename);
|
|
while (lex.IsOK()) {
|
|
string lang, babel, display, encoding_str, code, latex_options;
|
|
bool rtl = false;
|
|
|
|
if (lex.next())
|
|
lang = lex.GetString();
|
|
else
|
|
break;
|
|
lyxerr[Debug::INIT] << "Reading language " << lang << endl;
|
|
|
|
if (lex.next())
|
|
babel = lex.GetString();
|
|
if (lex.next())
|
|
display = lex.GetString();
|
|
if (lex.next())
|
|
rtl = lex.GetBool();
|
|
if (lex.next())
|
|
encoding_str = lex.GetString();
|
|
if (lex.next())
|
|
code = lex.GetString();
|
|
if (lex.next())
|
|
latex_options = lex.GetString();
|
|
|
|
Encoding const * encoding = encodings.getEncoding(encoding_str);
|
|
if (!encoding) {
|
|
encoding = encodings.getEncoding("iso8859-1");
|
|
lyxerr << "Unknown encoding " << encoding_str << endl;
|
|
}
|
|
|
|
languagelist[lang] = Language(lang, babel, display, rtl,
|
|
encoding, code, latex_options);
|
|
}
|
|
|
|
default_language = getLanguage(lyxrc.default_language);
|
|
if (!default_language) {
|
|
lyxerr << "Default language \"" << lyxrc.default_language
|
|
<< "\" not found!" << endl;
|
|
default_language = getLanguage("english");
|
|
if (!default_language)
|
|
default_language = &(*languagelist.begin()).second;
|
|
lyxerr << "Using \"" << default_language->lang()
|
|
<< "\" instead!" << endl;
|
|
}
|
|
english_language = getLanguage("english");
|
|
if (!english_language)
|
|
english_language = default_language;
|
|
}
|
|
|
|
Language const * Languages::getLanguage(string const & language) const
|
|
{
|
|
const_iterator it = languagelist.find(language);
|
|
if (it != languagelist.end())
|
|
return &(*it).second;
|
|
else
|
|
return 0;
|
|
}
|