~ubuntu-branches/ubuntu/utopic/nautilus/utopic-proposed

« back to all changes in this revision

Viewing changes to libnautilus-private/nautilus-clipboard.c

  • Committer: Package Import Robot
  • Author(s): Tim Lunn
  • Date: 2014-01-02 16:50:06 UTC
  • mto: This revision was merged to the branch mainline in revision 343.
  • Revision ID: package-import@ubuntu.com-20140102165006-ufn0so3frq4zox7l
Tags: upstream-3.10.1
ImportĀ upstreamĀ versionĀ 3.10.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
354
354
}
355
355
 
356
356
static const GtkActionEntry clipboard_entries[] = {
357
 
  /* name, stock id */      { "Cut", GTK_STOCK_CUT,
358
 
  /* label, accelerator */    NULL, NULL,
 
357
  /* name, stock id */      { "Cut", NULL,
 
358
  /* label, accelerator */    N_("Cu_t"), "<control>X",
359
359
  /* tooltip */               N_("Cut the selected text to the clipboard"),
360
360
                              G_CALLBACK (action_cut_callback) },
361
 
  /* name, stock id */      { "Copy", GTK_STOCK_COPY,
362
 
  /* label, accelerator */    NULL, NULL,
 
361
  /* name, stock id */      { "Copy", NULL,
 
362
  /* label, accelerator */    N_("_Copy"), "<control>C",
363
363
  /* tooltip */               N_("Copy the selected text to the clipboard"),
364
364
                              G_CALLBACK (action_copy_callback) },
365
 
  /* name, stock id */      { "Paste", GTK_STOCK_PASTE,
366
 
  /* label, accelerator */    NULL, NULL,
 
365
  /* name, stock id */      { "Paste", NULL,
 
366
  /* label, accelerator */    N_("_Paste"), "<control>V",
367
367
  /* tooltip */               N_("Paste the text stored on the clipboard"),
368
368
                              G_CALLBACK (action_paste_callback) },
369
369
  /* name, stock id */      { "Select All", NULL,