Go to the documentation of this file.
8 #ifndef HAS_LIVES_SUPPORT_H
9 #define HAS_LIVES_SUPPORT_H
12 #ifndef lives_locale_to_utf8
14 #define lives_locale_to_utf8(a, b, c, d, e) g_locale_to_utf8(a, b, c, d, e)
24 char *translate(
const char *String);
25 char *translate_with_plural(
const char *String,
const char *StringPlural,
unsigned long int n);
30 # define _(String) (translate(String))
31 # define P_(String, StringPlural, n) (translate_with_plural(String, StringPlural, n))
33 # define N_(String) gettext_noop(String)
35 # define N_(String) (String)
38 # define textdomain(String) (String)
39 # define gettext(String) (String)
40 # define dgettext(Domain, Message) (Message)
41 # define dngettext(Domain, Message, MsgPlur, n) (Message)
42 # define dcgettext(Domain, Message, Type) (Message)
43 # define bindtextdomain(Domain, Directory) (Domain)
44 # define _(String) (String)
45 # define N_(String) (String)
46 # define P_(String, StringPlural, n) (String)