mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-21 14:02:57 +02:00
You can't translate an empty string, and more to the point, it has really unintended effects within gettext!
This commit is contained in:
@@ -920,7 +920,7 @@ void LWSlider::FormatPopWin()
|
||||
#ifdef EXPERIMENTAL_MIDI_OUT
|
||||
case VEL_SLIDER:
|
||||
label.Printf(wxT("%s: %s%d"), mName.c_str(),
|
||||
(mCurrentValue > 0.0f ? _("+") : _("")),
|
||||
(mCurrentValue > 0.0f ? _("+") : wxT("")),
|
||||
(int) mCurrentValue);
|
||||
#endif
|
||||
}
|
||||
|
Reference in New Issue
Block a user