Update of /cvsroot/audacity/audacity-src/src/effects
In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv17949/src/effects
Modified Files:
Contrast.cpp
Log Message:
Remove "translatable" empty strings because they don't need to be translated
Index: Contrast.cpp
===================================================================
RCS file: /cvsroot/audacity/audacity-src/src/effects/Contrast.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- Contrast.cpp 9 Nov 2008 18:39:41 -0000 1.3
+++ Contrast.cpp 10 Nov 2008 20:29:00 -0000 1.4
@@ -238,17 +238,17 @@
{
// Headings
- S.AddFixedText(_(" "), false);
+ S.AddFixedText(wxT(" "), false);
S.AddFixedText(_("Start"), false);
S.AddFixedText(_("End"), false);
- S.AddFixedText(_(""), false); // spacer
+ S.AddFixedText(wxT(""), false); // spacer
S.AddFixedText(_("Volume"), false);
//Foreground
S.AddFixedText(_("Foreground:"), false);
S.StartMultiColumn(2, wxCENTER);
{
- mForegroundStartText =
S.Id(ID_FOREGROUNDSTART_TEXT).AddTextBox(_(""), wxT(""), 12);
+ mForegroundStartText =
S.Id(ID_FOREGROUNDSTART_TEXT).AddTextBox(wxT(""), wxT(""), 12);
mForegroundStartText->SetValidator(vld);
number = wxString::Format(wxT("%.2f"), startTimeF);
mForegroundStartText->ChangeValue(number);
@@ -256,7 +256,7 @@
S.EndMultiColumn();
S.StartMultiColumn(3, wxCENTER);
{
- mForegroundEndText = S.Id(ID_FOREGROUNDEND_TEXT).AddTextBox(_(""),
wxT(""), 12);
+ mForegroundEndText =
S.Id(ID_FOREGROUNDEND_TEXT).AddTextBox(wxT(""), wxT(""), 12);
mForegroundEndText->SetValidator(vld);
number = wxString::Format(wxT("%.2f"), endTimeF);
mForegroundEndText->ChangeValue(number);
@@ -271,7 +271,7 @@
S.AddFixedText(_("Background:"));
S.StartMultiColumn(2, wxCENTER);
{
- mBackgroundStartText =
S.Id(ID_BACKGROUNDSTART_TEXT).AddTextBox(_(""), wxT(""), 12);
+ mBackgroundStartText =
S.Id(ID_BACKGROUNDSTART_TEXT).AddTextBox(wxT(""), wxT(""), 12);
mBackgroundStartText->SetValidator(vld);
number = wxString::Format(wxT("%.2f"), startTimeB);
mBackgroundStartText->ChangeValue(number);
@@ -279,7 +279,7 @@
S.EndMultiColumn();
S.StartMultiColumn(3, wxCENTER);
{
- mBackgroundEndText = S.Id(ID_BACKGROUNDEND_TEXT).AddTextBox(_(""),
wxT(""), 12);
+ mBackgroundEndText =
S.Id(ID_BACKGROUNDEND_TEXT).AddTextBox(wxT(""), wxT(""), 12);
mBackgroundEndText->SetValidator(vld);
number = wxString::Format(wxT("%.2f"), endTimeB);
mBackgroundEndText->ChangeValue(number);
-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Audacity-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/audacity-cvs