Go to the documentation of this file.
8 #ifndef HAS_LIVES_SUPPORT_H
9 #define HAS_LIVES_SUPPORT_H
13 #define lives_strdup(a) g_strdup(a)
14 #define lives_free(a) g_free(a)
15 #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);
29 # define _(String) (translate(String))
30 # define P_(String, StringPlural, n) (translate_with_plural(String, StringPlural, n))
32 # define N_(String) gettext_noop(String)
34 # define N_(String) (String)
37 # define textdomain(String) (String)
38 # define gettext(String) (String)
39 # define dgettext(Domain, Message) (Message)
40 # define dngettext(Domain, Message, MsgPlur, n) (Message)
41 # define dcgettext(Domain, Message, Type) (Message)
42 # define bindtextdomain(Domain, Directory) (Domain)
43 # define _(String) (String)
44 # define N_(String) (String)
45 # define P_(String, StringPlural, n) (String)