mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 07:34:32 +00:00
ec43c635cc
darcs-hash:20060104125102-ac50b-5bf026578a69bd94f7a7a3c8dee0ebccd95e5c24.gz
27 lines
577 B
C
27 lines
577 B
C
/** \file translate.h
|
|
|
|
Translation library, internally uses catgets
|
|
|
|
*/
|
|
|
|
/**
|
|
Shorthand for wgettext call
|
|
*/
|
|
#define _(wstr) wgettext(wstr)
|
|
|
|
/**
|
|
Noop, used to tell xgettext that a string should be translated, even though it is not directly sent to wgettext.
|
|
*/
|
|
#define N_(wstr) wstr
|
|
|
|
/**
|
|
Wide character wwrapper around the gettext function
|
|
*/
|
|
const wchar_t *wgettext( const wchar_t *in );
|
|
|
|
/**
|
|
Initialize (or reinitialize) the translation library
|
|
\param lang The two-character language name, such as 'de' or 'en'
|
|
*/
|
|
void translate_init();
|
|
void translate_destroy();
|