Author Topic: Small bug in project importer plugin  (Read 4587 times)

Offline gd_on

  • Lives here!
  • ****
  • Posts: 797
Small bug in project importer plugin
« on: September 27, 2008, 07:22:08 pm »
In projectsimporter.cpp at line 103 the original code is : (actual svn rev 5231)
fileMenu->Insert(++id, wxNewId(), _T("&Import project"), m_Menu);

It works but the menu "Import project" cannot be translated in localized version of C::B.
I think it should be :
fileMenu->Insert(++id, wxNewId(), _("&Import project"), m_Menu);

Like that, this menu item is translatable.

gd_on
Windows 11 64 bits (23H2), svn C::B (last version or almost!), wxWidgets 3.2.4 (tests with 3.3), Msys2 Compilers 13.2.0, 64 bits (seh, posix : gcc, g++ and gfortran in C:\msys64\mingw64) or 32 bits (dwarf2, posix  in C:\msys64\mingw32).

Offline nanyu

  • Almost regular
  • **
  • Posts: 188
  • nanyu
Re: Small bug in project importer plugin
« Reply #1 on: September 28, 2008, 04:20:15 am »
(sorry for my english...)

the same situation is the "Help" menu item and the "View" item.
after the c::b applied a localized file, all the "Help plugin" menuitem was lose;
and the "Open files list " menu item was lose.

Offline nanyu

  • Almost regular
  • **
  • Posts: 188
  • nanyu
Re: Small bug in project importer plugin
« Reply #2 on: September 28, 2008, 04:22:06 am »
here is a screenshot :