aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGabor Kelemen <kelemeng@ubuntu.com>2014-02-13 02:49:14 +0100
committerGabor Kelemen <kelemeng@ubuntu.com>2014-02-13 02:49:14 +0100
commit2e3c872852cd04c8ecde424478126176ed9d80c6 (patch)
tree2ea4448311dc267a3b9537511851d07bd11726d1 /src
parent6938c6e6c6a640d22a3e841a474796166351a428 (diff)
downloadayatana-indicator-printers-2e3c872852cd04c8ecde424478126176ed9d80c6.tar.gz
ayatana-indicator-printers-2e3c872852cd04c8ecde424478126176ed9d80c6.tar.bz2
ayatana-indicator-printers-2e3c872852cd04c8ecde424478126176ed9d80c6.zip
Add proper i18n support. Fixes LP:1279605
Diffstat (limited to 'src')
-rw-r--r--src/indicator-printers-service.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/indicator-printers-service.c b/src/indicator-printers-service.c
index fb85069..737fed4 100644
--- a/src/indicator-printers-service.c
+++ b/src/indicator-printers-service.c
@@ -21,6 +21,7 @@
#include <gtk/gtk.h>
#include <cups/cups.h>
#include "dbus-names.h"
+#include "config.h"
#include "cups-notifier.h"
#include "indicator-printers-menu.h"
@@ -146,6 +147,12 @@ service_shutdown (IndicatorService *service, gpointer user_data)
int main (int argc, char *argv[])
{
+ /* Init i18n */
+ setlocale (LC_ALL, "");
+ bindtextdomain (GETTEXT_PACKAGE, GNOMELOCALEDIR);
+ bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
+ textdomain (GETTEXT_PACKAGE);
+
IndicatorService *service;
DbusmenuServer *menuserver;
CupsNotifier *cups_notifier;