]> git.lyx.org Git - lyx.git/blobdiff - src/gettext.C
* src/tabular.[Ch]: simplify plaintext methods, because there
[lyx.git] / src / gettext.C
index 1712961c45d324b6f501fd6f92d0133ac0781c16..46053cfc59e5407e4e66316470accbf6ed59e26d 100644 (file)
@@ -1,60 +1,46 @@
-/* This file is part of
- * ======================================================
+/**
+ * \file src/gettext.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
+ * \author Lars Gullik Bjønnes
+ * \author Jean-Marc Lasgouttes
  *
- *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-2001 The LyX Team.
- *
- * ====================================================== */
+ * Full author contact details are available in file CREDITS.
+ */
 
 #include <config.h>
 
+#include "gettext.h"
+#include "messages.h"
+
+#include "support/environment.h"
+#include "support/lstrings.h"
+
+
+namespace lyx {
+
 #ifdef HAVE_LOCALE_H
 #  include <locale.h>
 #endif
 
-#include "LString.h"
-
-#include <boost/scoped_array.hpp>
+using support::setEnv;
 
-#ifdef ENABLE_NLS
+using std::string;
 
-#  if HAVE_GETTEXT
-#    include <libintl.h>      // use the header already in the system *EK*
-#  else
-#    include "../intl/libintl.h"
-#  endif
 
-char const * _(char const * str)
+docstring const _(string const & str)
 {
-       // I'd rather have an Assert on str, we should not allow
-       // null pointers here. Lgb
-       // Assert(str);
-       if (str && str[0])
-               return gettext(str);
-       else
-               return "";
+       return getGuiMessages().get(str);
 }
 
 
-string const _(string const & str)
-{
-       if (!str.empty()) {
-               int const s = str.length();
-               boost::scoped_array<char> tmp(new char[s + 1]);
-               str.copy(tmp.get(), s);
-               tmp[s] = '\0';
-               string const ret(gettext(tmp.get()));
-               return ret;
-       } else {
-               return string();
-       }
-}
-
+#ifdef ENABLE_NLS
 
 void locale_init()
 {
+       // Disable, as otherwise it overrides everything else incl. the doc language
+       setEnv("LANGUAGE", "");
 #  ifdef HAVE_LC_MESSAGES
        setlocale(LC_MESSAGES, "");
 #  endif
@@ -62,14 +48,6 @@ void locale_init()
        setlocale(LC_NUMERIC, "C");
 }
 
-
-void gettext_init(string const & localedir)
-{
-       bindtextdomain(PACKAGE, localedir.c_str());
-       textdomain(PACKAGE);
-}
-
-
 #else // ENABLE_NLS
 
 void locale_init()
@@ -77,8 +55,21 @@ void locale_init()
        setlocale(LC_NUMERIC, "C");
 }
 
+#endif
+
 
-void gettext_init(string const &)
+docstring const translateIfPossible(docstring const & name)
 {
+       if (support::isAscii(name))
+               // Probably from a standard configuration file, try to
+               // translate
+               return _(to_ascii(name));
+       else
+               // This must be from a user defined configuration file. We
+               // cannot translate this, since gettext accepts only ascii
+               // keys.
+               return name;
 }
-#endif
+
+
+} // namespace lyx