mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-21 22:12:58 +02:00
Don't concatenate ":" onto user-visible strings...
... include it in the msgid intead, to get appropriate translations. For instance some locales use the same character but prefer to insert a space before it.
This commit is contained in:
@@ -819,7 +819,8 @@ void WaveTrackMenuTable::OnSpectrogramSettings(wxCommandEvent &)
|
||||
// (pTrack->GetDisplay() == WaveTrack::Spectrum) ? 1 :
|
||||
0;
|
||||
|
||||
wxString title(pTrack->GetName() + wxT(": "));
|
||||
/* i18n-hint: An item name followed by a value, with appropriate separating punctuation */
|
||||
auto title = wxString::Format(_("%s: %s"), pTrack->GetName(), wxT(""));
|
||||
ViewSettingsDialog dialog(mpData->pParent, title, factories, page);
|
||||
|
||||
if (0 != dialog.ShowModal()) {
|
||||
|
Reference in New Issue
Block a user