]> git.lyx.org Git - lyx.git/blobdiff - src/gettext.C
fix aspell encoding (confirmed on linux, cygwin and native windows,
[lyx.git] / src / gettext.C
index 6c79a241d184d72990d9e3aba9e76f102a8fc2da..55b2ef80821f79cd55665386522d35198d16868f 100644 (file)
 
 #include "gettext.h"
 #include "messages.h"
+
 #include "support/environment.h"
-#include "support/docstring.h"
+#include "support/lstrings.h"
+
+
+namespace lyx {
 
 #ifdef HAVE_LOCALE_H
 #  include <locale.h>
 #endif
 
-using lyx::support::setEnv;
-using lyx::docstring;
+using support::setEnv;
 
 using std::string;
 
 
 namespace {
 
-Messages & getLyXMessages()
+static Messages & getLyXMessages()
 {
        static Messages lyx_messages;
 
@@ -44,12 +47,6 @@ docstring const _(string const & str)
 }
 
 
-docstring const _(docstring const & str)
-{
-       return getLyXMessages().get(lyx::to_utf8(str));
-}
-
-
 #ifdef ENABLE_NLS
 
 void locale_init()
@@ -71,3 +68,20 @@ void locale_init()
 }
 
 #endif
+
+
+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;
+}
+
+
+} // namespace lyx