summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Karapetsas <[email protected]>2014-02-09 19:42:52 +0100
committerStefano Karapetsas <[email protected]>2014-02-09 19:42:52 +0100
commit1cbd30e5d962da18ecd7f44c3088f6315c5fc437 (patch)
tree929e43e158b792369be575a4253de97ad0a9cc0c
parent4eaa64b71e2c4276f7c88f3eda17a0802e0910fe (diff)
downloadengrampa-1cbd30e5d962da18ecd7f44c3088f6315c5fc437.tar.bz2
engrampa-1cbd30e5d962da18ecd7f44c3088f6315c5fc437.tar.xz
Fix translation of some menu items
-rw-r--r--src/ui.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ui.h b/src/ui.h
index fd85778..c3b22f7 100644
--- a/src/ui.h
+++ b/src/ui.h
@@ -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,