blob: 88a009408814fbbfbb1cb3538647e522d41c9492 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef _I18N_H
#define _I18N_H 42
/* gettext.h is a regular GNU gettext header now */
#include "gettext.h"
/* local modifications */
#define GT_(s) gettext(s)
#define N_(s) gettext_noop(s)
#endif
|