|
claw
1.9.0
|
Macros to call gettext on the libclaw textdomain. More...
#include <libintl.h>

Go to the source code of this file.
Macros | |
| #define | claw_gettext(s) dgettext("libclaw", (s)) |
| Call gettext on the default text domain used by Claw. More... | |
| #define | claw_ngettext(s, p, n) dngettext("libclaw", (s), (p), (n)) |
| Call ngettext on the default text domain used by Claw. More... | |
Macros to call gettext on the libclaw textdomain.
Definition in file claw_gettext.hpp.
| #define claw_gettext | ( | s | ) | dgettext("libclaw", (s)) |
Call gettext on the default text domain used by Claw.
| s | The string to translate. |
Definition at line 39 of file claw_gettext.hpp.
| #define claw_ngettext | ( | s, | |
| p, | |||
| n | |||
| ) | dngettext("libclaw", (s), (p), (n)) |
Call ngettext on the default text domain used by Claw.
| s | The string to translate by default. |
| p | The plural version of s. |
| n | The number thar triggers the choice of s or p. |
Definition at line 47 of file claw_gettext.hpp.
1.8.14