From b3d7ad6a887558de075869db5cfd957c4431b5fc Mon Sep 17 00:00:00 2001
From: Olivier Fourdan <fourdan.olivier@wanadoo.fr>
Date: Tue, 21 Jan 2003 23:45:20 +0000
Subject: [PATCH] Fix a typo.

(Old svn revision: 10853)
---
 src/menu.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/menu.c b/src/menu.c
index 7b694cc2d..e4f2eef8a 100644
--- a/src/menu.c
+++ b/src/menu.c
@@ -55,8 +55,8 @@ static MenuItem menuitems[] = {
     {MENU_OP_WORKSPACES, NULL, N_("Wor_kspace")},
     {0, NULL, NULL},
 #endif
-    {MENU_OP_QUIT, NULL, _("_Quit")},
-    {MENU_OP_RESTART, NULL, _("Restart")},
+    {MENU_OP_QUIT, NULL, N_("_Quit")},
+    {MENU_OP_RESTART, NULL, N_("Restart")},
 };
 
 static GtkToXEventFilterStatus menu_filter(XEvent * xevent, gpointer data)
@@ -304,7 +304,7 @@ gboolean menu_popup(Menu * menu, int root_x, int root_y, int button, guint32 tim
         if(!GTK_MENU_SHELL(GTK_MENU(menu->menu))->have_xgrab)
         {
             gdk_beep();
-            g_message(_("%S: GtkMenu failed to grab the pointer\n"), g_get_prgname());
+            g_message(_("%s: GtkMenu failed to grab the pointer\n"), g_get_prgname());
         }
     }
     return TRUE;
-- 
GitLab