~ubuntu-branches/ubuntu/gutsy/ms-sys/gutsy

« back to all changes in this revision

Viewing changes to src/nls.c

  • Committer: Bazaar Package Importer
  • Author(s): Gürkan Sengün
  • Date: 2004-04-04 21:46:59 UTC
  • Revision ID: james.westby@ubuntu.com-20040404214659-zagib326l5tnd75w
Tags: upstream-1.1.3
Import upstream version 1.1.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include <locale.h>
 
2
 
 
3
#include "nls.h"
 
4
 
 
5
void nls_init(void)
 
6
{   
 
7
#ifndef NO_LIBINTL_OR_GETTEXT
 
8
   setlocale (LC_ALL, "");
 
9
   bindtextdomain (PACKAGE, LOCALEDIR);
 
10
   textdomain (PACKAGE);
 
11
#endif
 
12
} /* nls_init */