From 0bdc32e6c8475228c1510c428cbed1a3ee13c4e6 Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Tue, 15 Sep 2009 15:34:14 -0500 Subject: Adding in gettext init stuff. --- src/users-service.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/users-service.c') diff --git a/src/users-service.c b/src/users-service.c index 5db832b..d50a277 100644 --- a/src/users-service.c +++ b/src/users-service.c @@ -20,6 +20,8 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ +#include + #include #include @@ -133,6 +135,12 @@ main (int argc, char ** argv) { g_type_init(); + /* Setting up i18n and gettext. Apparently, we need + all of these. */ + setlocale (LC_ALL, ""); + bindtextdomain (GETTEXT_PACKAGE, GNOMELOCALEDIR); + textdomain (GETTEXT_PACKAGE); + session_bus = dbus_g_bus_get(DBUS_BUS_SESSION, NULL); bus_proxy = dbus_g_proxy_new_for_name(session_bus, DBUS_SERVICE_DBUS, DBUS_PATH_DBUS, DBUS_INTERFACE_DBUS); GError * error = NULL; -- cgit v1.2.3