diff options
author | Dan Winship <danw@src.gnome.org> | 2002-11-27 01:22:34 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2002-11-27 01:22:34 +0800 |
commit | 6c0ba6d1f6d2a89ea011b5c9d671c941f8d324c0 (patch) | |
tree | 94407f654941860067dc36195ac96a1284649f47 /shell/e-shell-settings-dialog.c | |
parent | 57d76d9b31a0ff48f2134d11737818a74fdf6c8a (diff) | |
download | gsoc2013-evolution-6c0ba6d1f6d2a89ea011b5c9d671c941f8d324c0.tar gsoc2013-evolution-6c0ba6d1f6d2a89ea011b5c9d671c941f8d324c0.tar.gz gsoc2013-evolution-6c0ba6d1f6d2a89ea011b5c9d671c941f8d324c0.tar.bz2 gsoc2013-evolution-6c0ba6d1f6d2a89ea011b5c9d671c941f8d324c0.tar.lz gsoc2013-evolution-6c0ba6d1f6d2a89ea011b5c9d671c941f8d324c0.tar.xz gsoc2013-evolution-6c0ba6d1f6d2a89ea011b5c9d671c941f8d324c0.tar.zst gsoc2013-evolution-6c0ba6d1f6d2a89ea011b5c9d671c941f8d324c0.zip |
e_get_language_list now returns language codes that actually work with
* e-shell-settings-dialog.c (page_new): e_get_language_list now
returns language codes that actually work with oaf, making the
_()s here redundant.
* e-component-info.c (get_i18n_value): Remove code to turn "fr_FR"
into "fr", since e_get_language_list will return both now.
svn path=/trunk/; revision=18928
Diffstat (limited to 'shell/e-shell-settings-dialog.c')
-rw-r--r-- | shell/e-shell-settings-dialog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/e-shell-settings-dialog.c b/shell/e-shell-settings-dialog.c index a99a0dfc54..4161cba791 100644 --- a/shell/e-shell-settings-dialog.c +++ b/shell/e-shell-settings-dialog.c @@ -94,8 +94,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; |