From f853a2bc8ac072eb34372deb420e20b954f2f302 Mon Sep 17 00:00:00 2001 From: Stefano Karapetsas Date: Tue, 28 Jan 2014 12:22:43 +0100 Subject: command: Use Preferences instead of Properties as label --- command/command.c | 6 +++--- 1 file 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 = "" +static char *ui = "" ""; static void -- cgit v1.2.1