Huge upade containing several bugfixes related to i18n, and a huge number of new translatable strings, including almost all description messages for command specific completions

darcs-hash:20060108025656-ac50b-e2309829a0afa6b3270d13814e9600d0fd372407.gz
This commit is contained in:
axel
2006-01-08 12:56:56 +10:00
parent b33d3f78b1
commit 690648e1b0
126 changed files with 8873 additions and 2253 deletions

View File

@@ -44,6 +44,9 @@ char *translate_wcs2str( const wchar_t *in )
const wchar_t *wgettext( const wchar_t *in )
{
if( !in )
return in;
char *mbs_in = translate_wcs2str( in );
char *out = gettext( mbs_in );
wchar_t *wres=0;