diff src/layout_util.c @ 571:6867a444839c

Shorten Edit menu labels, dropping "in ". It will ease translations too, and user can define its own label in Preferences.
author zas_
date Sun, 04 May 2008 00:32:05 +0000
parents fd51eac09ead
children 905688aa2317
line wrap: on
line diff
--- a/src/layout_util.c	Sun May 04 00:21:14 2008 +0000
+++ b/src/layout_util.c	Sun May 04 00:32:05 2008 +0000
@@ -875,11 +875,11 @@
 
 			if (options->editor_name[i] && strlen(options->editor_name[i]) > 0)
 				{
-				text = g_strdup_printf(_("_%d in %s..."), i, options->editor_name[i]);
+				text = g_strdup_printf(_("_%d %s..."), i, options->editor_name[i]);
 				}
 			else
 				{
-				text = g_strdup_printf(_("_%d in (unknown)..."), i);
+				text = g_strdup_printf(_("_%d (unknown)..."), i);
 				}
 			g_object_set(action, "label", text,
 					     "sensitive", TRUE, NULL);