Bugzilla – Bug 114
Some UI text strings are not set to be translated
Last modified: 2018-08-20 11:46:16 UTC
Created attachment 2 [details] patch to fix bug In file src\commands\Command.cpp in function at line 73: bool ApplyAndSendResponse::Apply(CommandExecutionContext context) { [...] line 77 becomes: response += wxT(" finished: "); response += _(" finished: "); [...] line 80 becomes: response += wxT("OK"); response += _("OK"); [...] line 83 becomes: response += wxT("Failed!"); response += _("Failed In file src\widgets\MultiDialog.cpp in ctor at line 52 MultiDialog::MultiDialog... [...]line 89 becomes: wxButton *ok = new wxButton(this, wxID_OK, wxT("OK")); wxButton *ok = new wxButton(this, wxID_OK, _("OK"));
GA: <a href="http://wiki.audacityteam.org/wiki/Patches_Decided">Patch 018</a> committed by JKC 10Feb10.