mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-12 07:57:22 +00:00
d1c9bca2e9
darcs-hash:20060209155020-ac50b-e119c5293ce2368e252cfc01b98ab7c629fdd678.gz
21 lines
398 B
C
21 lines
398 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 );
|
|
|