@@ -451,22 +451,22 @@ target_data_free (TargetCallbackData *target_data)
451451
452452static const GtkActionEntry clipboard_entries [] =
453453{
454- /* name, stock id */ { "Cut" , GTK_STOCK_CUT ,
455- /* label, accelerator */ NULL , NULL ,
454+ /* name, icon name */ { "Cut" , "edit-cut" ,
455+ /* label, accelerator */ N_ ( "Cu_t" ) , NULL ,
456456 /* tooltip */ N_ ("Cut the selected text to the clipboard" ),
457457 G_CALLBACK (action_cut_callback )
458458 },
459- /* name, stock id */ { "Copy" , GTK_STOCK_COPY ,
460- /* label, accelerator */ NULL , NULL ,
459+ /* name, icon name */ { "Copy" , "edit-copy" ,
460+ /* label, accelerator */ N_ ( "_Copy" ) , NULL ,
461461 /* tooltip */ N_ ("Copy the selected text to the clipboard" ),
462462 G_CALLBACK (action_copy_callback )
463463 },
464- /* name, stock id */ { "Paste" , GTK_STOCK_PASTE ,
465- /* label, accelerator */ NULL , NULL ,
464+ /* name, icon name */ { "Paste" , "edit-paste" ,
465+ /* label, accelerator */ N_ ( "_Paste" ) , NULL ,
466466 /* tooltip */ N_ ("Paste the text stored on the clipboard" ),
467467 G_CALLBACK (action_paste_callback )
468468 },
469- /* name, stock id */ { "Select All" , NULL ,
469+ /* name, icon name */ { "Select All" , NULL ,
470470 /* label, accelerator */ N_ ("Select _All" ), "<control>A" ,
471471 /* tooltip */ N_ ("Select all the text in a text field" ),
472472 G_CALLBACK (action_select_all_callback )
0 commit comments