Patch for optimal l10n experience for 2.0.1



There's a patch by Chyla at
http://bugzilla.gnome.org/show_bug.cgi?id=89425

that I'd like to get into 2.0.1. This patch breaks the string freeze
(one string only) and I think this string «Help->Contents» is prominent
enough that we really need to get it translated for this release.

No impact on docs.

Thoughts?

Cheers
Kjartan

PS. Attaching the patch here also.

Index: gnome-app-helper.c
===================================================================
RCS file: /cvs/gnome/libgnomeui/libgnomeui/gnome-app-helper.c,v
retrieving revision 1.211
diff -u -r1.211 gnome-app-helper.c
--- gnome-app-helper.c	16 Jul 2002 19:26:44 -0000	1.211
+++ gnome-app-helper.c	1 Aug 2002 15:15:53 -0000
@@ -1140,8 +1140,9 @@
 create_help_entries (GtkMenuShell *menu_shell, GnomeUIInfo *uiinfo, gint pos)
 {
 	gchar *path;
-
-	uiinfo->widget = gtk_image_menu_item_new_with_mnemonic (L_("_Contents"));
+	gchar *title = N_("_Contents");
+		
+	uiinfo->widget = gtk_image_menu_item_new_with_mnemonic (L_(title));
 	uiinfo->hint = g_strdup (_("View help for this application"));
 
 	setup_image_menu_item (uiinfo->widget, GNOME_APP_PIXMAP_STOCK, GTK_STOCK_HELP);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]