mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-19 17:11:12 +02:00
Translate the format "%s: %s" wherever user-visible...
... because some languages, like French, prefer to insert a space before :
This commit is contained in:
@@ -999,7 +999,7 @@ wxString LWSlider::GetTip(float value) const
|
||||
#endif
|
||||
}
|
||||
|
||||
label.Printf(wxT("%s: %s"), mName, val);
|
||||
label.Printf(_("%s: %s"), mName, val);
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -1042,7 +1042,7 @@ wxString LWSlider::GetMaxTip() const
|
||||
#endif
|
||||
}
|
||||
|
||||
label.Printf(wxT("%s: %s"), mName, val);
|
||||
label.Printf(_("%s: %s"), mName, val);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Reference in New Issue
Block a user