Code::Blocks Forums

Developer forums (C::B DEVELOPMENT STRICTLY!) => Development => Topic started by: gd_on on September 11, 2013, 07:10:17 pm

Title: Items that should not be translated in manager.cpp
Post by: gd_on on September 11, 2013, 07:10:17 pm
In svn 9310, many items have been added in manager.cpp.
Most of them appears declared as _ strings, for example as name = _("cbEVT_APP_STARTUP_DONE").
The problem is that they appear as translatable strings, but should not I think.
They should probably be declared as _T strings, so name = _T("cbEVT_APP_STARTUP_DONE").

gd_on
Title: Re: Items that should not be translated in manager.cpp
Post by: oBFusCATed on September 11, 2013, 07:13:54 pm
If you can do a patch it will be best :)
Title: Re: Items that should not be translated in manager.cpp
Post by: gd_on on September 11, 2013, 07:36:48 pm
Here it is ...

gd_on
Title: Re: Items that should not be translated in manager.cpp
Post by: oBFusCATed on September 11, 2013, 11:35:45 pm
in svn...
Title: Re: Items that should not be translated in manager.cpp
Post by: ollydbg on September 12, 2013, 02:34:44 am
Thank to gd_on and OBF.
Commit 9310 is again my fault, sorry about that.