You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
347 B
15 lines
347 B
10 years ago
|
#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 */
|