gladish: rename "Run..." menu entries to "New Application..."

This commit is contained in:
Nedko Arnaudov 2010-12-25 05:25:48 +02:00
parent 8ff8613dc7
commit a515997dbf
2 changed files with 2 additions and 2 deletions

View File

@ -201,7 +201,7 @@
<property name="visible">True</property>
<child>
<object class="GtkImageMenuItem" id="menu_item_start_app">
<property name="label" translatable="yes">Run...</property>
<property name="label" translatable="yes">New Application...</property>
<property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
<property name="image">image_start_app</property>
<property name="sensitive">False</property>

View File

@ -358,7 +358,7 @@ void fill_view_popup_menu(GtkMenu * menu, graph_view_handle view)
if (graph_view_get_app_supervisor(view) != NULL)
{
menuitem = gtk_menu_item_new_with_label(_("Run..."));
menuitem = gtk_menu_item_new_with_label(_("New Application..."));
g_signal_connect(menuitem, "activate", (GCallback)on_popup_menu_action_start_app, NULL);
gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem);
}