Fix incorrect (empty) strings marked for translation
Empty strings are illegal for I18n tools.
This commit is contained in:
parent
86f5d4e665
commit
99216a76d7
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue