From 51530925ec9efce86e105c0327cbe67a317aa950 Mon Sep 17 00:00:00 2001 From: Alexey Yakovenko Date: Sat, 15 May 2010 23:39:29 +0200 Subject: added basic gettext support and russian translation --- gettext.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 gettext.h (limited to 'gettext.h') diff --git a/gettext.h b/gettext.h new file mode 100644 index 00000000..837a6e7e --- /dev/null +++ b/gettext.h @@ -0,0 +1,15 @@ +#ifndef _GETTEXT_H +#define _GETTEXT_H 1 + +#if ENABLE_NLS + +# include +#define _(s) gettext(s) + +#else + +#define _(s) (s) + +#endif + +#endif -- cgit v1.2.3