From ff24b9ea1bf0361f8fdbd2cc341507ff7a1145c4 Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Thu, 1 Jun 2000 14:30:13 +0000 Subject: [PATCH] =?UTF-8?q?Set=20up=20gettext.=20(Problem=20noted=20by=20H?= =?UTF-8?q?=C3=A9ctor=20Garc=C3=ADa=20Alvarez)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * main.c (main): Set up gettext. (Problem noted by Héctor García Alvarez) svn path=/trunk/; revision=3334 --- shell/ChangeLog | 5 +++++ shell/main.c | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/shell/ChangeLog b/shell/ChangeLog index 7ee4850107..e9e31dc9f8 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,8 @@ +2000-06-01 Dan Winship + + * main.c (main): Set up gettext. (Problem noted by Héctor García + Alvarez) + 2000-06-01 Ettore Perazzoli * e-shell-view.c (DEFAULT_WIDTH): Add more 5 pixels. diff --git a/shell/main.c b/shell/main.c index 4444ac223b..407abaebc5 100644 --- a/shell/main.c +++ b/shell/main.c @@ -21,6 +21,7 @@ * Author: Ettore Perazzoli */ +#include #include #include #include @@ -176,6 +177,9 @@ main (int argc, char **argv) { char *evolution_directory; + bindtextdomain (PACKAGE, EVOLUTION_LOCALEDIR); + textdomain (PACKAGE); + init_corba (&argc, argv); gnome_window_icon_set_default_from_file (EVOLUTION_IMAGES "/evolution-inbox.png");