aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2002-11-27 01:22:34 +0800
committerDan Winship <danw@src.gnome.org>2002-11-27 01:22:34 +0800
commit6c0ba6d1f6d2a89ea011b5c9d671c941f8d324c0 (patch)
tree94407f654941860067dc36195ac96a1284649f47
parent57d76d9b31a0ff48f2134d11737818a74fdf6c8a (diff)
downloadgsoc2013-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
-rw-r--r--shell/ChangeLog9
-rw-r--r--shell/e-component-info.c7
-rw-r--r--shell/e-shell-settings-dialog.c4
3 files changed, 11 insertions, 9 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index 4a9d3dbdca..97dcec3383 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,3 +1,12 @@
+2002-11-25 Dan Winship <danw@ximian.com>
+
+ * 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.
+
2002-11-25 Ettore Perazzoli <ettore@ximian.com>
* apps_evolution_shell.schemas: Fix <key> -> <applyto> typo.
diff --git a/shell/e-component-info.c b/shell/e-component-info.c
index 8cb93d5c09..a89647c8a1 100644
--- a/shell/e-component-info.c
+++ b/shell/e-component-info.c
@@ -115,13 +115,6 @@ get_i18n_value (xmlNode *parent_node,
language_id = (const char *) p->data;
node = lookup_node_for_language (parent_node, node_name, language_id);
- if (node == NULL && language_id[2] == '_') {
- char short_language_id[3];
-
- strncpy (short_language_id, language_id, 2);
- node = lookup_node_for_language (parent_node, node_name, short_language_id);
- }
-
if (node != NULL) {
xmlChar *xml_value;
char *glib_value;
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;