diff options
author | Alexander Larsson <alexl@redhat.com> | 2008-02-19 09:11:00 +0000 |
---|---|---|
committer | Alexander Larsson <alexl@src.gnome.org> | 2008-02-19 09:11:00 +0000 |
commit | fbb7d640972bfc18818fcce46aec7e746c25b4ce (patch) | |
tree | bae1d9e244d9aab2c2678cbf38719ced4b16bd0a /libnautilus-private/nautilus-clipboard.c | |
parent | ffbd1556a51a550038c9905bfb35f9f3ee54311a (diff) | |
download | nautilus-fbb7d640972bfc18818fcce46aec7e746c25b4ce.tar.gz |
Move comments around to help translators (#463616) Patch from Yann Simon
2008-02-19 Alexander Larsson <alexl@redhat.com>
* libnautilus-private/nautilus-clipboard.c:
* src/file-manager/fm-directory-view.c:
* src/file-manager/fm-icon-view.c:
* src/file-manager/fm-list-view.c:
* src/nautilus-navigation-window-menus.c:
* src/nautilus-spatial-window.c:
* src/nautilus-window-menus.c:
Move comments around to help translators (#463616)
Patch from Yann Simon
svn path=/trunk/; revision=13771
Diffstat (limited to 'libnautilus-private/nautilus-clipboard.c')
-rw-r--r-- | libnautilus-private/nautilus-clipboard.c | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/libnautilus-private/nautilus-clipboard.c b/libnautilus-private/nautilus-clipboard.c index 66ee4f4ff..cfc5459d9 100644 --- a/libnautilus-private/nautilus-clipboard.c +++ b/libnautilus-private/nautilus-clipboard.c @@ -437,22 +437,22 @@ target_data_free (TargetCallbackData *target_data) } static const GtkActionEntry clipboard_entries[] = { - { "Cut", GTK_STOCK_CUT, /* name, stock id */ - NULL, NULL, /* label, accelerator */ - N_("Cut the selected text to the clipboard"), /* tooltip */ - G_CALLBACK (action_cut_callback) }, - { "Copy", GTK_STOCK_COPY, /* name, stock id */ - NULL, NULL, /* label, accelerator */ - N_("Copy the selected text to the clipboard"), /* tooltip */ - G_CALLBACK (action_copy_callback) }, - { "Paste", GTK_STOCK_PASTE, /* name, stock id */ - NULL, NULL, /* label, accelerator */ - N_("Paste the text stored on the clipboard"), /* tooltip */ - G_CALLBACK (action_paste_callback) }, - { "Select All", NULL, /* name, stock id */ - N_("Select _All"), "<control>A", /* label, accelerator */ - N_("Select all the text in a text field"), /* tooltip */ - G_CALLBACK (action_select_all_callback) }, + /* name, stock id */ { "Cut", GTK_STOCK_CUT, + /* label, accelerator */ NULL, NULL, + /* tooltip */ N_("Cut the selected text to the clipboard"), + G_CALLBACK (action_cut_callback) }, + /* name, stock id */ { "Copy", GTK_STOCK_COPY, + /* label, accelerator */ NULL, NULL, + /* tooltip */ N_("Copy the selected text to the clipboard"), + G_CALLBACK (action_copy_callback) }, + /* name, stock id */ { "Paste", GTK_STOCK_PASTE, + /* label, accelerator */ NULL, NULL, + /* tooltip */ N_("Paste the text stored on the clipboard"), + G_CALLBACK (action_paste_callback) }, + /* name, stock id */ { "Select All", NULL, + /* label, accelerator */ N_("Select _All"), "<control>A", + /* tooltip */ N_("Select all the text in a text field"), + G_CALLBACK (action_select_all_callback) }, }; static TargetCallbackData * |