diff options
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/e-shell-settings-dialog.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 4a72c925ad..b29c5dbf51 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,8 @@ +2002-09-17 Kjartan Maraas <kmaraas@gnome.org> + + * e-shell-settings-dialog.c (page_new): Invoke gettext on + strings coming from the .oaf files. + 2002-09-17 Ettore Perazzoli <ettore@ximian.com> * e-local-storage.c: Remove some leftover junk. diff --git a/shell/e-shell-settings-dialog.c b/shell/e-shell-settings-dialog.c index 1fc2655066..dcc57ce621 100644 --- a/shell/e-shell-settings-dialog.c +++ b/shell/e-shell-settings-dialog.c @@ -76,8 +76,8 @@ page_new (const char *title, gdk_pixbuf_ref (icon); page = g_new (Page, 1); - page->title = g_strdup (title); - page->description = g_strdup (description); + page->title = g_strdup (_(title)); + page->description = g_strdup (_(description)); page->icon = icon; page->type = type; page->priority = priority; |