From 0d2634fe2d81fad7a3db288c14a6d3d560bd9e00 Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Mon, 5 Jun 2017 14:43:19 +0200 Subject: [PATCH] Fix incorrect declaration of a translatable string. --- eeschema/menubar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eeschema/menubar.cpp b/eeschema/menubar.cpp index 3b2c3cc7cd..94683de434 100644 --- a/eeschema/menubar.cpp +++ b/eeschema/menubar.cpp @@ -383,7 +383,7 @@ void prepareFilesMenu( wxMenu* aParentMenu, bool aIsOutsideProject ) // Plot submenu wxMenu* choice_plot_fmt = new wxMenu; - AddMenuItem( choice_plot_fmt, ID_GEN_PLOT_SCHEMATIC, _( u8"&Plot" ), + AddMenuItem( choice_plot_fmt, ID_GEN_PLOT_SCHEMATIC, _( "&Plot" ), _( "Plot schematic sheet in PostScript, PDF, SVG, DXF or HPGL format" ), KiBitmap( plot_xpm ) );