diff options
author | Stefano Karapetsas <[email protected]> | 2014-02-09 19:42:52 +0100 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2014-02-09 19:42:52 +0100 |
commit | 1cbd30e5d962da18ecd7f44c3088f6315c5fc437 (patch) | |
tree | 929e43e158b792369be575a4253de97ad0a9cc0c /src/ui.h | |
parent | 4eaa64b71e2c4276f7c88f3eda17a0802e0910fe (diff) | |
download | engrampa-1cbd30e5d962da18ecd7f44c3088f6315c5fc437.tar.bz2 engrampa-1cbd30e5d962da18ecd7f44c3088f6315c5fc437.tar.xz |
Fix translation of some menu items
Diffstat (limited to 'src/ui.h')
-rw-r--r-- | src/ui.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -134,11 +134,11 @@ static GtkActionEntry action_entries[] = { N_("View the output produced by the last executed command"), G_CALLBACK (activate_action_last_output) }, { "New", GTK_STOCK_NEW, - NC_("File", "New..."), NULL, + N_("New..."), NULL, N_("Create a new archive"), G_CALLBACK (activate_action_new) }, { "Open", GTK_STOCK_OPEN, - NC_("File", "Open..."), NULL, + N_("Open..."), NULL, N_("Open archive"), G_CALLBACK (activate_action_open) }, { "Open_Toolbar", GTK_STOCK_OPEN, @@ -162,7 +162,7 @@ static GtkActionEntry action_entries[] = { N_("Reload current archive"), G_CALLBACK (activate_action_reload) }, { "SaveAs", GTK_STOCK_SAVE_AS, - NC_("File", "Save As..."), NULL, + N_("Save As..."), NULL, N_("Save the current archive with a different name"), G_CALLBACK (activate_action_save_as) }, { "SelectAll", GTK_STOCK_SELECT_ALL, |