diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/messages-service.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/messages-service.c b/src/messages-service.c index 575de8e..e37a721 100644 --- a/src/messages-service.c +++ b/src/messages-service.c @@ -21,6 +21,9 @@ with this program. If not, see <http://www.gnu.org/licenses/>. */ #include <string.h> +#include <locale.h> +#include <libintl.h> +#include <config.h> #include <pango/pango-utils.h> #include <dbus/dbus-glib-bindings.h> #include <libindicate/listener.h> @@ -1219,6 +1222,12 @@ main (int argc, char ** argv) return 1; } + /* Setting up i18n and gettext. Apparently, we need + all of these. */ + setlocale (LC_ALL, ""); + bindtextdomain (GETTEXT_PACKAGE, GNOMELOCALEDIR); + textdomain (GETTEXT_PACKAGE); + dbus_interface = message_service_dbus_new(); listener = indicate_listener_ref_default(); |