blob: 5b61546fafe6541b697b041b6c59cbceed43e60a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef __LIBR_I18N_H
#define __LIBR_I18N_H
#include "libr.h"
#include "gettext.h"
#define _(string) gettext(string)
/* for strings used in structures (must manually call gettext!): */
#define N_(string) (string)
int libr_i18n_autoload(const char *domain);
int libr_i18n_load(libr_file *handle, const char *domain);
#endif /* __LIBR_I18N_H */
|