1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-02 15:53:12 +02:00

core: fix tests when NLS is disabled

This commit is contained in:
Sébastien Helleu
2021-05-21 13:51:47 +02:00
parent 916f57f31d
commit 4065972000
+1 -1
View File
@@ -48,7 +48,7 @@
#endif /* defined(ENABLE_NLS) && !defined(_) */
#if !defined(_)
#define _(string) (string)
#define NG_(single,plural,number) (plural)
#define NG_(single,plural,number) ((number == 1) ? single : plural)
#define N_(string) (string)
#define gettext(string) (string)
#endif /* !defined(_) */