summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Karapetsas <[email protected]>2014-01-28 12:22:43 +0100
committerStefano Karapetsas <[email protected]>2014-01-28 12:22:43 +0100
commitf853a2bc8ac072eb34372deb420e20b954f2f302 (patch)
treef6500d589bc5d82b0b2f74856a604791d73caedd
parent2bbe6bed65d37db6390f2b45fa6be6ee714df4fb (diff)
downloadmate-applets-f853a2bc8ac072eb34372deb420e20b954f2f302.tar.bz2
mate-applets-f853a2bc8ac072eb34372deb420e20b954f2f302.tar.xz
command: Use Preferences instead of Properties as label
-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