~ubuntu-branches/ubuntu/gutsy/audacity/gutsy-backports

« back to all changes in this revision

Viewing changes to src/export/ExportCL.cpp

  • Committer: Bazaar Package Importer
  • Author(s): John Dong
  • Date: 2008-02-18 21:58:19 UTC
  • mfrom: (13.1.2 hardy)
  • Revision ID: james.westby@ubuntu.com-20080218215819-tmbcf1rx238r8gdv
Tags: 1.3.4-1.1ubuntu1~gutsy1
Automated backport upload; no source changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
/// 
53
53
ExportCLOptions::ExportCLOptions(wxWindow *parent)
54
54
:  wxDialog(NULL, wxID_ANY,
55
 
   wxString(_("Specify Command Line Options")),
 
55
   wxString(_("Specify Command Line Encoder")),
56
56
   wxDefaultPosition, wxDefaultSize,
57
57
   wxDEFAULT_DIALOG_STYLE | wxSTAY_ON_TOP)
58
58
{
84
84
         S.EndMultiColumn();
85
85
 
86
86
 
87
 
         S.AddFixedText(_("Include \"%f\" where the output filename should be substituted."));
 
87
         S.AddFixedText(_("Data will be piped to standard in. \"%f\" will be replaced with output filename selected."));
88
88
      }
89
89
      S.EndStatic();
90
90
   }
91
91
   S.EndHorizontalLay();
92
 
   S.StartHorizontalLay(wxALIGN_CENTER, false);
93
 
   {
94
 
#if defined(__WXGTK20__) || defined(__WXMAC__)
95
 
      S.Id(wxID_CANCEL).AddButton(_("&Cancel"));
96
 
      S.Id(wxID_OK).AddButton(_("&OK"))->SetDefault();
97
 
#else
98
 
      S.Id(wxID_OK).AddButton(_("&OK"))->SetDefault();
99
 
      S.Id(wxID_CANCEL).AddButton(_("&Cancel"));
100
 
#endif
101
 
   }
102
 
   GetSizer()->AddSpacer(5);
 
92
 
 
93
   S.AddStandardButtons();
 
94
 
103
95
   Layout();
104
96
   Fit();
105
97
   SetMinSize(GetSize());