Marguerite Su 2013-10-27 15:03:47 +00:00 committed by Git OBS Bridge
parent 49a606c73b
commit a8cf2a2693

View File

@ -53,17 +53,17 @@ Index: nemo-2.0.1/libnemo-private/nemo-clipboard.c
static const GtkActionEntry clipboard_entries[] = { static const GtkActionEntry clipboard_entries[] = {
- /* name, stock id */ { "Cut", GTK_STOCK_CUT, - /* name, stock id */ { "Cut", GTK_STOCK_CUT,
+ /* name, stock id */ { "Cut", _("Cu_t"), + /* name, stock id */ { "Cut", "Cu_t",
/* label, accelerator */ NULL, NULL, /* label, accelerator */ NULL, NULL,
/* tooltip */ N_("Cut the selected text to the clipboard"), /* tooltip */ N_("Cut the selected text to the clipboard"),
G_CALLBACK (action_cut_callback) }, G_CALLBACK (action_cut_callback) },
- /* name, stock id */ { "Copy", GTK_STOCK_COPY, - /* name, stock id */ { "Copy", GTK_STOCK_COPY,
+ /* name, stock id */ { "Copy", _("_Copy"), + /* name, stock id */ { "Copy", "_Copy",
/* label, accelerator */ NULL, NULL, /* label, accelerator */ NULL, NULL,
/* tooltip */ N_("Copy the selected text to the clipboard"), /* tooltip */ N_("Copy the selected text to the clipboard"),
G_CALLBACK (action_copy_callback) }, G_CALLBACK (action_copy_callback) },
- /* name, stock id */ { "Paste", GTK_STOCK_PASTE, - /* name, stock id */ { "Paste", GTK_STOCK_PASTE,
+ /* name, stock id */ { "Paste", _("_Paste"), + /* name, stock id */ { "Paste", "_Paste",
/* label, accelerator */ NULL, NULL, /* label, accelerator */ NULL, NULL,
/* tooltip */ N_("Paste the text stored on the clipboard"), /* tooltip */ N_("Paste the text stored on the clipboard"),
G_CALLBACK (action_paste_callback) }, G_CALLBACK (action_paste_callback) },