Fix incorrect (empty) strings marked for translation

Empty strings are illegal for I18n tools.
This commit is contained in:
jean-pierre charras 2018-09-04 20:22:07 +02:00
parent 86f5d4e665
commit 99216a76d7
1 changed files with 2 additions and 2 deletions

View File

@ -342,11 +342,11 @@ void preparePlaceMenu( wxMenu* aParentMenu )
wxMenu* autoplaceSubmenu = new wxMenu;
AddMenuItem( autoplaceSubmenu, ID_POPUP_PCB_AUTOPLACE_OFF_BOARD_MODULES,
_( "&Autoplace off-board components" ), _( "" ), KiBitmap( grid_select_axis_xpm ) // fixme: icons
_( "&Autoplace off-board components" ), "", KiBitmap( grid_select_axis_xpm ) // fixme: icons
);
AddMenuItem( autoplaceSubmenu, ID_POPUP_PCB_AUTOPLACE_SELECTED_MODULES,
_( "&Autoplace selected components" ), _( "" ), KiBitmap( grid_select_axis_xpm ) // fixme: icons
_( "&Autoplace selected components" ), "", KiBitmap( grid_select_axis_xpm ) // fixme: icons
);
AddMenuItem( aParentMenu, autoplaceSubmenu,