Changeset 4911 for trunk/gtk/actions.c
- Timestamp:
- Feb 3, 2008, 5:10:03 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/gtk/actions.c
r4905 r4911 102 102 { "edit-menu", NULL, N_("_Edit"), NULL, NULL, NULL }, 103 103 { "help-menu", NULL, N_("_Help"), NULL, NULL, NULL }, 104 { "open-torrent", GTK_STOCK_OPEN, 105 NULL, NULL, N_("Open Torrent"), G_CALLBACK(action_cb) }, 104 { "open-torrent-toolbar", GTK_STOCK_OPEN, N_("_Open"), NULL, 105 N_("Open an existing torrent"), 106 G_CALLBACK(action_cb) }, 107 { "open-torrent-menu", GTK_STOCK_OPEN, N_("_Open..."), "<control>O", 108 N_("Open an existing torrent"), 109 G_CALLBACK(action_cb) }, 106 110 { "start-torrent", GTK_STOCK_MEDIA_PLAY, 107 111 N_("_Start"), "<control>S", NULL, G_CALLBACK(action_cb) }, … … 113 117 { "remove-torrent", GTK_STOCK_REMOVE, 114 118 N_("_Remove"), "<control>Delete", NULL, G_CALLBACK(action_cb) }, 115 { "create-torrent", GTK_STOCK_NEW, 116 N_("Create _New Torrent"), NULL, NULL, G_CALLBACK(action_cb) }, 117 { "close", GTK_STOCK_CLOSE, 118 N_("_Close"), "<control>W", NULL, G_CALLBACK(action_cb) }, 119 { "new-torrent", GTK_STOCK_NEW, N_("_New..."), NULL, 120 N_("Create a new torrent"), 121 G_CALLBACK(action_cb) }, 122 { "close", GTK_STOCK_CLOSE, N_("_Close"), "<control>W", 123 N_("Close main window"), 124 G_CALLBACK(action_cb) }, 119 125 { "quit", GTK_STOCK_QUIT, 120 126 N_("_Quit"), "<control>Q", NULL, G_CALLBACK(action_cb) },
Note: See TracChangeset
for help on using the changeset viewer.