Audacity Bug Summary
••• Introduction •••
••• Keywords •••
    Audacity 3.0.3 development began 19th April 2021

Audacity Bugzilla



Bug 114 - Some UI text strings are not set to be translated
Some UI text strings are not set to be translated
Status: RESOLVED FIXED
Product: Audacity
Classification: Unclassified
Component: User Interface
1.3.11
Per OS All
: P5 Repeatable
Assigned To: Default Assignee for New Bugs
:
Depends on:
Blocks:
  Show dependency treegraph
 
Reported: 2010-02-10 16:57 UTC by Ed Musgrove
Modified: 2018-08-20 11:46 UTC (History)
1 user (show)

See Also:
Steps To Reproduce:
Release Note:
First Git SHA:
Group: ---
Workaround:
Closed: 2018-08-20 00:00:00


Attachments
patch to fix bug (1.06 KB, application/octet-stream)
2010-02-10 16:57 UTC, Ed Musgrove
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Ed Musgrove 2010-02-10 16:57:28 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"));
Comment 1 Gale Andrews 2010-02-10 21:48:59 UTC
GA: <a href="http://wiki.audacityteam.org/wiki/Patches_Decided">Patch 018</a> committed by JKC 10Feb10.