forked from newsboat/newsboat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.h
38 lines (27 loc) · 986 Bytes
/
config.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#ifndef NEWSBOAT_CONFIG_H_
#define NEWSBOAT_CONFIG_H_
#define PACKAGE "newsboat"
#define PROGRAM_NAME "Newsboat"
#define PROGRAM_URL "https://newsboat.org/"
#define NEWSBEUTER_PATH_SEP '/'
#define NEWSBEUTER_CONFIG_SUBDIR ".newsbeuter"
#define NEWSBEUTER_SUBDIR_XDG "newsbeuter"
#define NEWSBOAT_CONFIG_SUBDIR ".newsboat"
#define NEWSBOAT_SUBDIR_XDG "newsboat"
#include <libintl.h>
#include <locale.h>
#ifdef _
#undef _
#endif
#define _(string) gettext(string)
#ifdef _s
#undef _s
#endif
#define _s(msg) std::string(gettext(msg))
// Use this macro instead of `_` and `_s` if you want the string to get extracted
// by xgettext, but don't want to call gettext(). This is useful for
// initializers of statically-allocated global objects, where gettext() calls
// operate with default (C) locale and are useless.
#define translatable(msg) msg
/* #define NDEBUG */ // only enable this #define if you want to disable all debug logging.
#endif /* NEWSBOAT_CONFIG_H_ */