Fixed wrapping, removed WorldInfo callback (now handled by mcp)

This commit is contained in:
Jesse van den Kieboom 2005-11-15 11:58:27 +00:00
parent e330cd4358
commit d3133369bd
1 changed files with 6 additions and 4 deletions

View File

@ -52,9 +52,10 @@ static const GtkActionEntry gm_menu_entries[] =
{"WorldClose", GTK_STOCK_CLOSE, NULL, NULL,
N_("Close current world"), G_CALLBACK(on_gm_app_view_world_close)},
{"WorldLogs", GTK_STOCK_FILE, N_("Logs"), NULL,
N_("View current world logs"), G_CALLBACK(on_gm_app_view_world_logs)},
{"WorldInfo", GTK_STOCK_ABOUT, N_("In_fo"), NULL,
N_("View current world info"), G_CALLBACK(on_gm_app_view_world_info)},
N_("View current world logs"),
G_CALLBACK(on_gm_app_view_world_logs)},
{"WorldInfo", GTK_STOCK_INFO, N_("In_fo"), NULL,
N_("View current world info"), NULL},
/* Edit menu */
{"EditCut", GTK_STOCK_CUT, NULL, "<control>X",
@ -64,7 +65,8 @@ static const GtkActionEntry gm_menu_entries[] =
{"EditPaste", GTK_STOCK_PASTE, NULL, "<control>V",
N_("Paste the clipboard"), G_CALLBACK(on_gm_app_view_edit_paste)},
{"EditWorld", NULL, N_("Current world..."), "<control>E",
N_("Edit the current world"), G_CALLBACK(on_gm_app_view_edit_world)},
N_("Edit the current world"),
G_CALLBACK(on_gm_app_view_edit_world)},
{"EditFind", GTK_STOCK_FIND, NULL, "<control>F",
N_("Find text"), G_CALLBACK(on_gm_app_view_edit_find)},
{"EditFindNext", GTK_STOCK_FIND, N_("Find next"), "<control>G",