]> git.lyx.org Git - lyx.git/blobdiff - src/support/gettext.cpp
add onoff support for "inset-modify changetype xxx" in include inset
[lyx.git] / src / support / gettext.cpp
index 37a50ce11c60c32b771b0b847965294a8f82e2d1..a129854e8219492cd2cec496b94041b1410da350 100644 (file)
@@ -57,4 +57,18 @@ docstring const translateIfPossible(docstring const & name)
 }
 
 
+docstring const translateIfPossible(docstring const & name, std::string const & language)
+{
+       if (support::isAscii(name))
+               // Probably from a standard configuration file, try to
+               // translate
+               return getMessages(language).get(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