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

« back to all changes in this revision

Viewing changes to src/Dependencies.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:
302
302
      {
303
303
         if (mIsSaving) {
304
304
            S.Id(wxID_CANCEL).AddButton(_("Cancel Save"));
305
 
            S.Id(wxID_NO).AddButton(_("Skip"));
306
 
         }
307
 
         else {
308
 
            S.Id(wxID_NO).AddButton(_("Close"));
309
 
         }
 
305
         }
 
306
         S.Id(wxID_NO).AddButton(_("Do Not Copy Any Audio"));
310
307
 
311
 
         S.Id(wxID_YES).AddButton(_("Copy All Audio Into Project (safer)"));
 
308
         S.Id(wxID_YES).AddButton(_("Copy All Audio into Project (Safer)"));
312
309
      }
313
310
      S.EndHorizontalLay();
314
311
      
318
315
         {
319
316
            wxArrayString choices;
320
317
            choices.Add(_("Ask me"));
321
 
            choices.Add(_("Always &copy all audio (safest)"));
322
 
            choices.Add(_("&Never copy any audio"));
 
318
            choices.Add(_("Always copy all audio (safest)"));
 
319
            choices.Add(_("Never copy any audio"));
323
320
            mChoice = S.Id(FutureActionID).AddChoice(
324
321
               _("Whenever a project depends on other files:"),
325
322
               _("Ask me"), &choices);