mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-19 09:01:15 +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:
@@ -597,7 +597,9 @@ void VampEffect::PopulateOrExchange(ShuttleGui & S)
|
||||
{
|
||||
labelText += wxT(" (") + unit + wxT(")");
|
||||
}
|
||||
S.AddPrompt(labelText + wxT(":"));
|
||||
/* i18n-hint: An item name introducing a value, which is not part of the string but
|
||||
appears in a following text box window; translate with appropriate punctuation */
|
||||
S.AddPrompt(wxString::Format(_("%s:"), labelText));
|
||||
|
||||
if (mParameters[p].isQuantized &&
|
||||
mParameters[p].quantizeStep == 1.0 &&
|
||||
|
Reference in New Issue
Block a user