Update of /cvsroot/audacity/audacity-src/src
In directory sc8-pr-cvs11.sourceforge.net:/tmp/cvs-serv31203

Modified Files:
        LabelDialog.cpp Menus.cpp Project.cpp Sequence.cpp 
Log Message:
Fix a number of tranlation-related problems with interface strings and the like


Index: Project.cpp
===================================================================
RCS file: /cvsroot/audacity/audacity-src/src/Project.cpp,v
retrieving revision 1.296
retrieving revision 1.297
diff -u -d -r1.296 -r1.297
--- Project.cpp 12 Mar 2007 09:23:07 -0000      1.296
+++ Project.cpp 29 Mar 2007 18:17:25 -0000      1.297
@@ -2364,7 +2364,7 @@
        {
           fName = wxFileSelector(_("Save Speech As:"),
                           path, fName, wxT(""),
-                          _("Windows PCM Audio file *.wav)|*.wav"),  //lda
+                          _("Windows PCM Audio file (*.wav)|*.wav"),  //lda
                           wxSAVE | wxOVERWRITE_PROMPT, this);
        }
        else

Index: LabelDialog.cpp
===================================================================
RCS file: /cvsroot/audacity/audacity-src/src/LabelDialog.cpp,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- LabelDialog.cpp     12 Mar 2007 09:23:06 -0000      1.10
+++ LabelDialog.cpp     29 Mar 2007 18:17:25 -0000      1.11
@@ -344,9 +344,7 @@
 
    for (i = 0; i < cnt; i++) {
       if (mData[i]->title.IsEmpty()) {
-         int id = wxMessageBox(_("You have left blank label names.  These will 
be\n"
-                             wxT("skipped when repopulating the Label 
Tracks.\n\n")
-                             wxT("Would you like to go back and provide 
names?")),
+         int id = wxMessageBox(_("You have left blank label names.  These will 
be\nskipped when repopulating the Label Tracks.\n\nWould you like to go back 
and provide names?"),
                                _("Confirm"),
                                wxYES_NO | wxICON_EXCLAMATION);
          if (id == wxYES) {

Index: Menus.cpp
===================================================================
RCS file: /cvsroot/audacity/audacity-src/src/Menus.cpp,v
retrieving revision 1.300
retrieving revision 1.301
diff -u -d -r1.300 -r1.301
--- Menus.cpp   18 Mar 2007 01:31:51 -0000      1.300
+++ Menus.cpp   29 Mar 2007 18:17:25 -0000      1.301
@@ -440,7 +440,7 @@
       AudioIONotBusyFlag | WaveTracksSelectedFlag,
       AudioIONotBusyFlag | WaveTracksSelectedFlag);
 
-   c->AddItem(wxT("SplitNew"),      _("Split Ne&wCtrl+Alt+I"),       
FN(OnSplitNew));
+   c->AddItem(wxT("SplitNew"),      _("Split Ne&w\tCtrl+Alt+I"),       
FN(OnSplitNew));
    c->SetCommandFlags(wxT("SplitNew"),
       AudioIONotBusyFlag | WaveTracksSelectedFlag,
       AudioIONotBusyFlag | WaveTracksSelectedFlag);

Index: Sequence.cpp
===================================================================
RCS file: /cvsroot/audacity/audacity-src/src/Sequence.cpp,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -d -r1.42 -r1.43
--- Sequence.cpp        12 Mar 2007 09:23:08 -0000      1.42
+++ Sequence.cpp        29 Mar 2007 18:17:25 -0000      1.43
@@ -729,7 +729,7 @@
                // the silent replacement to mMaxSamples.
             len = mMaxSamples;
          mBlock->Item(b)->f = new SilentBlockFile(len);
-         wxLogWarning(wxT("Gap detected in project file\n"));
+         wxLogWarning(_("Gap detected in project file\n"));
          mErrorOpening = true;
       }
    }
@@ -739,14 +739,14 @@
    for (b = 0; b < mBlock->Count(); b++) {
       if (mBlock->Item(b)->start != numSamples) {
          mBlock->Item(b)->start = numSamples;
-         wxLogWarning(wxT("Gap detected in project file\n"));
+         wxLogWarning(_("Gap detected in project file\n"));
          mErrorOpening = true;         
       }
       numSamples += mBlock->Item(b)->f->GetLength();
    }
    if (mNumSamples != numSamples) {
       mNumSamples = numSamples;
-      wxLogWarning(wxT("Gap detected in project file\n"));
+      wxLogWarning(_("Gap detected in project file\n"));
       mErrorOpening = true;
    }
 }


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Audacity-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/audacity-cvs

Reply via email to