summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--command/command.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/command/command.c b/command/command.c
index abb888f0..3079e56b 100644
--- a/command/command.c
+++ b/command/command.c
@@ -70,11 +70,11 @@ static void command_settings_callback (GtkAction *action, CommandApplet *command
static gboolean command_execute (CommandApplet *command_applet);
static const GtkActionEntry applet_menu_actions [] = {
- { "Properties", GTK_STOCK_PROPERTIES, NULL, NULL, NULL, G_CALLBACK (command_settings_callback) },
- { "About", GTK_STOCK_ABOUT, NULL, NULL, NULL, G_CALLBACK (command_about_callback) }
+ { "Preferences", GTK_STOCK_PROPERTIES, N_("_Preferences"), NULL, NULL, G_CALLBACK (command_settings_callback) },
+ { "About", GTK_STOCK_ABOUT, N_("_About"), NULL, NULL, G_CALLBACK (command_about_callback) }
};
-static char *ui = "<menuitem name='Item 1' action='Properties' />"
+static char *ui = "<menuitem name='Item 1' action='Preferences' />"
"<menuitem name='Item 2' action='About' />";
static void