diff options
author | Ted Gould <ted@canonical.com> | 2009-09-16 09:25:09 -0500 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-09-16 09:25:09 -0500 |
commit | 24543619fb480c635209d8f2382845cb2562a5f1 (patch) | |
tree | dbadc35f9978f37f4abb396464b01dfddb7dbb1d /src/session-service.c | |
parent | 82395ac94e6daaf020d0310602756007a6b89451 (diff) | |
parent | 29b907bc1c91648aef47f3082c839395c4c8aa3f (diff) | |
download | ayatana-indicator-session-24543619fb480c635209d8f2382845cb2562a5f1.tar.gz ayatana-indicator-session-24543619fb480c635209d8f2382845cb2562a5f1.tar.bz2 ayatana-indicator-session-24543619fb480c635209d8f2382845cb2562a5f1.zip |
Branch to init i18n in the various services
Diffstat (limited to 'src/session-service.c')
-rw-r--r-- | src/session-service.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/session-service.c b/src/session-service.c index 59a3a97..4db0a6e 100644 --- a/src/session-service.c +++ b/src/session-service.c @@ -21,6 +21,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#include <config.h> #include <glib/gi18n.h> @@ -282,6 +283,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); + DBusGConnection * connection = dbus_g_bus_get(DBUS_BUS_SESSION, NULL); DBusGProxy * bus_proxy = dbus_g_proxy_new_for_name(connection, DBUS_SERVICE_DBUS, DBUS_PATH_DBUS, DBUS_INTERFACE_DBUS); GError * error = NULL; |