X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fgettext.h;h=0624d8be83ef5379ad9824fda22f73f3c9c3f24b;hb=e5b8f6956160631022fede155f55bad7951eecb8;hp=eaddb3253afee452a0599b106a639baa75807664;hpb=43b77ba2d722cdb8a9437926f839c1dcbf3c0b89;p=lyx.git diff --git a/src/gettext.h b/src/gettext.h index eaddb3253a..0624d8be83 100644 --- a/src/gettext.h +++ b/src/gettext.h @@ -15,7 +15,8 @@ #include "support/docstring.h" -#include + +namespace lyx { /* * Native Language Support @@ -49,7 +50,7 @@ //#ifdef ENABLE_NLS /// -lyx::docstring const _(std::string const &); +docstring const _(std::string const &); //#else // ENABLE_NLS @@ -60,7 +61,17 @@ lyx::docstring const _(std::string const &); # define N_(str) (str) // for detecting static strings +/** + * Translate \p name if it is possible. + * This should be used to translate strings that come from configuration + * files like .ui files. These strings could already be in the native + * language if they come from a file in the personal directory. */ +docstring const translateIfPossible(docstring const & name); + /// void locale_init(); + +} // namespace lyx + #endif