]> git.lyx.org Git - lyx.git/blobdiff - src/gettext.h
Alfredo's second patch
[lyx.git] / src / gettext.h
index ebd358a739535c0e7af6b69a36b54a242f80db9d..7295c7dc337238b8ede2c13476a7bf095bb4072e 100644 (file)
  *   Panic/fatal (that should not happen) messages need not be translated
  */
 
-#ifdef ENABLE_NLS
-
 #include "LString.h"
 
+//#ifdef ENABLE_NLS
+
 ///
 char const * _(char const *);
 ///
 string const _(string const &);
-///
-void locale_init();
-///
-void gettext_init(string const & localedir);
 
-#else
-///
-#  define _(str) (str)
-///
-#  define S_(str) (str)
-///
-#  define locale_init()
+//#else // ENABLE_NLS
+
 ///
-#  define gettext_init(package, localedir)
+//#  define _(str) (str)
 
-#endif
+//#endif
 
 #  define N_(str) (str)              // for detecting static strings
 
+///
+void locale_init();
+
 #endif